How to connect PHP with Sql Server Database ?

A

Anonymous

Guest
Microsoft SQL server? You need the mssql packages for php to be installed. There are plenty of tutorials on how to do this. You can check to see if you have them already installed by creating a page that has the following code:

Code:
<?php
phpinfo();
?>

Then search for "mssql" if you find something you have the ability to connect to MSSQL servers
 
Back
Top