Sudhakar wrote:
instead of using mysql database which is conventionally used as database
with php, if sql server database is used with php are there any major
differences to keep in mind.

In syntax or what? Yes there are differences between the two as far as sql syntax goes.

1.
are the connection statements ex = $conn = mysql_connect($hostname, $user,
$dbpassword); etc does these remain the same or are they different.

Of course they are different. Why would mysql_connect (note the "MYSQL" part of that) connect to anything but a mysql database?

2.
unlike in mysql with phpmyadmin which is browser based to access databases
and tables how to access sql server for the same functionality

I think mssql has something like phpmyadmin built into the server itself.

3.
can anyone provide a link about a manual for using sql database with php

http://php.net/mssql

--
Postgresql & php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to