Hi,
I'm new to PHP and i've been learning some php for the past couple of days, now i'm trying to execute a script with MySql code in it but unfortunately the browser comes up with an error about httpd.exe!
it's just a simple code making a mysql connection:
<?php
$conn = mysql_connect("localhost", "root", "");
echo "$conn";
mysql_close($conn);
?>
before i had the problem of an undefined function in php mysql_connect which has been fixed. I have Apache 2.2.16 & PHP 5.2.6, running on windows xp.