Hello. I just instaled PHP and MySQL on IIS.
Then from any php file I try to conect to the mysql server and nothing 
happends.  I just get an empty page. All white.  No data and no error!

This is the code

$link = mysql_connect('localhost', '[user]', '[pass]');
if (!$link) {
    die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);


Can anyone help me?

Thanks 

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to