I want to connect php with sql server
and also configure php for using sql server.
Can anyone tell me step by step starting with configure php to connecting php with sql server
plz help me?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Please consult the PHP manual and review the material on Mssql. This is a built-in extension that you should have available, verify by reviewing the results from
<?php phpinfo(); ?>. If its not available then it may be enabled by addingextension=php_mssql.dllto php.ini. If you need more help than that then refer to the manual.You would begin with a simple mssql_connect to connect to a MSSQL server from PHP. The rest is in the docs…
You can also review SQL Server Driver for PHP if it turns out that you can’t use the Mssql extension.