Skip to content Skip to sidebar Skip to footer

Connecting To An Sql Server Mdf File Via Php

I currently have a school assignment that involves both PHP and asp.net. Now the assignment is that I make an E-commerce website with PHP and it's CMS with asp.net. Therefore both

Solution 1:

Here in the manual it's all explained. Look at the user comments as well.

http://www.php.net/manual/en/function.mssql-connect.php

Solution 2:

You will need to connect to a running SQL server instance which has the mdf file attached, rather than "connecting to the mdf file". As Vinko said, it is covered in the PHP manual for the mssql_ functions. You will probably need to first create a username/password in SQL Server which you can use to connect.

Post a Comment for "Connecting To An Sql Server Mdf File Via Php"