alrave Posted May 27, 2005 Share Posted May 27, 2005 im new to php and im trying to connect to sql server, im using the following code: <?php $sqlserver = 'localhost'; $sqluser = 'sa'; $sqlpass = ''; $connex = mssql_connect(&sqlserver, &sqluser, &sqlpass); if ($connex) { echo 'im in'; } ?> it gives me the following error Parse error: parse error, expecting `T_VARIABLE' or `'$'' in c:\inetpub\wwwroot\test\test1.php on line 15 line 15 would be : $connex = mssql_connect(&sqlserver, &sqluser, &sqlpass); any help would be appreciated Link to comment https://forums.phpfreaks.com/topic/2326-need-help-connecting-to-sql-server/ Share on other sites More sharing options...
StarBuck Posted June 1, 2005 Share Posted June 1, 2005 surely u should put '$' instead of the '&' Link to comment https://forums.phpfreaks.com/topic/2326-need-help-connecting-to-sql-server/#findComment-7660 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.