|
I can access mysql via the commandline but not through php. I dont' get any error messages, just a blank page. I put in echo lines to check where it breaks and looked at the source being output. It breaks right at the the mysql_connect command.
I am running Vista x64, IIS7, and PHP 5.2.4.
FYI, my php code is as follows:
<?php
echo 'test: Before Database Connection';
@mysql_connect("localhost", "username", "password");
echo 'test: CONNECTED!!!';
?>
|