Hi
I have checked the web server log. It contains following error:
[Tue Feb 13 10:54:57 2007] [error] [client 172.16.16.50] PHP
Fatal error: Call to undefined function mysql_connect() in C:\\Program
Files\\Apache Software Foundation\\Apache2.2\\htdocs\\index.php on line 5,
referer: http://172.16.16.50/
Dinesh
----- Original Message -----
From: "Tobin Cataldo" <tcataldo@stripped>
> This is probably not a MySQL issue...
> Set your error.log in your php.ini. If you have already set that then the
> error should show up there. Also check the web server log for errors.
----------------------------------------------------------------------
> <?php
> echo 'Hello World';
> $con = mysql_connect('localhost', 'dinesh', 'dinesh');
> if (!$con)
> {
> die('Could not connect: ' . mysql_error());
> }
> echo 'connected';
> ?>
> ------------------------------------------------------------------------