I have a database of MS-SQL at my home computer. Now I want to connect the

  • Thread starter Thread starter Herr Murad
  • Start date Start date
H

Herr Murad

Guest
database with a web site by php.HOw? I have a database of MS-SQL at my home computer. At home i have internet access. Now I want to connect the database with a web site by php.How can I do it?
 
Easy. Use ODBC. Performance is actually pretty good.

Create a system ODBC connection to your MS Sql database. Then use an ODBC string such as this to connect:

$conn_cb = odbc_connect("YOUR_DSN_NAME", "user", "P4assw0rd");
$result = odbc_exec($conn_cb, "SELECT * FROM table...");
$row = odbc_fetch_array($result);

Good luck!
 
Back
Top