Scratch that last post. I'm back to thinking that it really is just MySQL.
I am running PHP 5.0.x... and if I try to enable the php_mysql.dll extension in php.ini, when I bring up the Apache server, it will not load it. It says that it is not found. I can load most or all of the other ones. I haven't tried them all so I don't know about all. But at one point I wasn't able to load the php_mssql.dll. so I went and copied all of those libs into the system32 directory. Now php_mssql.dll will load.
But not mysql. And then, I try the following code:
<?php
if (!extension_loaded('mysql'))
{
echo "not loaded. loading...";
$prefix = (PHP_SHLIB_SUFFIX == 'dll') ? 'php_' : '';
enable_dl($prefix . 'mysql.' . PHP_SHLIB_SUFFIX);
}
if (extension_loaded('mysql'))
{
echo "<br>loaded<br>";
}
else
{
echo "<br>didn't load<br>";
}
print_r(get_loaded_extensions());
?>
PHPDesigner2005 will spit out the following:
not loaded. loading...
loaded
but when I try to access this page from a browser (either FireFox or IE 6.0) via localhost I get the following:
not loaded. loading...
didn't load
WHY???? does anyone have any clue what is going on? Please help if you do.