Ik krijg deze melding van Firefox "De verbinding werd geherinitialiseerd"
Als ik via MySQL-console inlog, is er geen probleem.
(ik heb uitzonderingen gemaakt in m'n firewall)
<body>
<?php // Script 12.1 - mysql_connect.php
// This script connects to the MySQL server.
// Attempt to connect to MySQL and echo messages:
if ($dbc = mysql_connect('localhost', 'root', '**********')) {
echo '<p>Succesfully connected to MySQL!</p>';
mysql_close(); // Close the connection.
} else {
echo '<p style="color:red;">Could not connect to MySQL.</p>';
}
?>
</body>
</html>