私はSQLサーバーの初心者です。MySQLを使用するアプリケーションがあり、そのアプリケーションでMySQLの代わりにSQLサーバーを使用したいと考えています。私のphpは:
<?php
$myServer = "localhost";
$myUser = "";
$myPass = "";
$myDB = "UNIVERSITY";
//connection to the database
$dbhandle = mssql_connect($myServer, $myUser, $myPass)
or die("Couldn't connect to SQL Server on $myServer");
//select a database to work with
$selected = mssql_select_db($myDB, $dbhandle)
or die("Couldn't open database $myDB");
//declare the SQL statement that will query the database
$query = "SELECT clgname";
$query .= "FROM dbo.clg ";
//execute the SQL query and return records
$result = mssql_query($query);
$numRows = mssql_num_rows($result);
if($numRows==0){
echo "false";
}
else{
echo "true";
}
//close the connection
mssql_close($dbhandle);
?>
の前のセミコロンも削除します
extension=php_mssql.dll
しかし、私はエラーが表示されます:
Fatal error: Call to undefined function mssql_connect() in C:\xampp\htdocs\1.php on line 8
助けてください。ありがとう。