Hi again. I did manage the auto input on date but the web-url-thing i can't figure out, i would love to have some help here, see my .php file:
<?php
$conn = mysql_connect("localhost", "root", "xxx");
mysql_select_db("receptionen",$conn);
$sql = "select * from emosms";
$result = mysql_query($sql, $conn) or die(mysql_error());
while ($newArray = mysql_fetch_array($result)) {
$namn = $newArray['namn'];
$mobil = $newArray['mobil'];
echo "$namn $mobil<br>";
}
?>
How dow i do it? Thx..