For Microsoft SQL Server.
I already have ENterprise Manager on my computer so Microsoft's client tools must be installed.
I'm trying to install the extension for mssql.
I have it uncommented in my php.ini
extension=php_mssql.dll
php_mssql.dll is also in my system32 folder on Windows
but it doesn't show up in the info page nor when I test this code:
<?php
if (function_exists('mssql_connect'))
{
echo "Okay, fn is there";
}
else
{
echo "Hmmm .. fn is not even there";
}
?>
No loading errors either when starting the webserver.
Any ideas on what to check?