I have another question. I am trying to connect to a M$ SQL server with PHP. I have used the mssql_connect that I read about in the PHP manual. When I try the line below. I get the error message
$conn= mssql_connect ('loca1', 'sa', 'password') or die ("connection error");
Fatal error: Call to undefined function: mssql_connect() in D:\defaultWeb1\sql.php on line 2
I assume this is the same as MySQL where you can just use the same line above but just with mysql_connect instead ?
Can someone help here ?
Thanks