Hi everyone, I am using php, but by some how, I have to use the db as a mssql 7.0, is there any way to insert data to mssql using php, or should i learn ASP.
Yes you can insert stuff into an MS Sql Db. You can either use the MSSQL_ set of commands or connect using the ODBC commands. Any decent PHP book will explain how to use them.
Good luck,
Also, you may find the online PHP manual quite useful as a reference.
PHP documentation is available at:
<A HREF="http://www.php.net/docs.php"> http://www.php.net/docs.php </A>
in a variety of formats/languages.
Online, HTML versions of MS SQL and ODBC sections can be found at
<A HREF="http://www.php.net/manual/en/ref.mssql.php"> http://www.php.net/manual/en/ref.mssql.php </A>
and
<A HREF="http://www.php.net/manual/en/ref.odbc.php"> http://www.php.net/manual/en/ref.odbc.php </A>
respectively.