H Herr Murad Guest Aug 12, 2009 #1 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?
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?
B Bernz New member Aug 12, 2009 #2 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!
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!