Ciprian Trofin <[EMAIL PROTECTED]> wrote on 4/19/2002 5:29:00 PM: > >> Bisexuality doubles the chance of getting a date. > > > Hi All! > In order to make my job easy, a choose the following approach: > >settings.php ><? >$dbserver = 'server'; >$dbname = 'name'; >$dbpass = 'password'; >?> > >main_file.php ><? >include "settings.php"; >@mysql_connect($dbserver,$dbname,$dbpass) or die ("Error"); >?> > > On the test machine (Windows 98, PHP Triad 221 - PHP 4.1.0) it > works; >when I put the project online, it doesn't (the "Error" message shows >up). If I don't use this approach and, in main_file.php, I use the >line: > @mysql_connect('server','name','pass') or die ("Error") > the sistem works. > > What's the problem ?
try double quote instead single quote. $dbserver = "server"; _________________ adi.baliroomfinder.net -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php