-
PHP and IIS
I recently installed PHP (The newest version i guess) on my Windows 2000 machine with IIS. I am able to get PHP to work just fine. My question is, does the standard installer (the windows installer, not the zip) allow me to access MSSQL and/or MYSQL servers or do i need to change some settings? add anything? Thanks
-
MSSQL, no. MySQL Yes.
I should clarify that.... it doesn't install MySQL, just the necessary mods to allow access to MySQL. If you want to use MySQL on your PC, you'll need to go d/l it from somewhere (mysql.net)
-
Do you know if there is any MSSQL support anywhere that i can install or enable, or is it just a generic ODBC connector?
-
-
To connect:
PHP Code:
<?
$username ="hello";
$password ="abcdefghijklmn";
$mssql_access = mssql_connect("servername", "username", "password");
?>