Hi all, got a little problem, when i try to
open my page i get the following message:
Warning: MySQL Connection Failed: Lost connection to MySQL server during query in c:\php\mysql.php3 on line 2
Fatal error: Maximum execution time of 30 seconds exceeded in c:\php\mysql.php3 on line 2
What's the problem here, my code is:
<?php
$connection = mysql_connect("localhost", "jlp", "jlp02");
$db = "test1_db";
$result = mysql_db_query($db, "SELECT * FROM medlemmer", $connection);
while($row = mysql_fetch_array($result)) {
echo $row["fornavn"]."<br>";
echo $row["efternavn"]."<br>";
echo $row["adresse"]."<br>";
echo "<br>\n";
}
mysql_free_result($result);
?>
and it comes from a tutorial, so it should work.
please help...
/Jesper