I had install Apache under WIN98 together with PHP 4.01 and MySQL server. PHP was tested and works fine MySql works fine but when I want to connct to MySQL server using PHP
mysql_connect("localhost","","");
I do not get any thing no error message.
<?php
/ Connecting, selecting database /
print "Testing connection";
$link = mysql_connect("localhost","","")
or die("Could not connect : " . mysql_error());
print "Connected successfully";
mysql_close();
print "connection close";
?>
Page Returned
Testing connection
I'm testing every thing in a stand alone computer not connected to any network.
Any help will be apreciated.
Hector