[snip]
> Here's the test script I am using: (Presume that's what you meant by
> "connection string"?
>
> <?PHP
>
> if($Connection = mysql_connect('localhost', '******', '******'))
> print 'Success!';
> else
> print 'Failure';
>
> ?>
[/snip]
Let's get a hair more info, try
if(!($Connection = mysql_connect('localhost', '******',
'******'))){
print(mysql_error() . "\n");
exit();
}
It also has the added benefit of shortening the code
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php