I have found many references on this site and the web to this issue, and I believe that I have done what is required, yet I can't get this to work. I always get....
Fatal error: Call to undefined function: mssql_connect()
If I run the following....
if(extension_loaded("mssql")) {
echo "MSSQL Loaded";
}
else {
echo "MSSQL not loaded";
}
... it will return "MSSQL not loaded".
I have PHP Version 4.3.6, running on WinXP Pro and Apache Server.
I have done the following based on comments I have seen in related threads:
1) uncommented extension=php_mssql.dll in the php.ini file.
2) restarted Apache
3) copied the php_mssql.dll to my Windows/system32 folder
4) restarted Apache
5) restarted my pc
Still no luck. Does anyone have a suggestion?
Thanks