Kim wrote:

when i using mssql_connect() function,that's show "Fatal error: Call to
undefined function: mssql_connect()" on php page,i don't know why that it
is!
php 4.2.3
sql server 2000
apache 1.3.19
windows 2000 pro

"php.ini" had configurated ok.

This error message means that the function is not compiled into your php. I suggest putting a phpinfo.php file in and looking at it to see whether mssql support is actually there. The file can be as simple as:
<?php
phpinfo();
?>
It could be that the php.ini you altered is not where php expects it to be. Phpinfo will show the location for php.ini as the "--with-config-file-path" configure command.

HTH
Chris


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

Reply via email to