Jump to content

Fatal error: Call to undefined function mssql_query()


maideen

Recommended Posts

Hi, I am new in PHP. I have tried to connect MSSQL 2005 through php.

I am using xampp 1.8.0 

But once run, error msg is "Fatal error: Call to undefined function mssql_query()".

I have copied  "php_mssql.dll" in PHP folder  and enable in PHP.ini as "extension=php_mssql.dll "

and also tried copied in PHP/ext folder also (all above got from forum PHP Freaks Previous topics)

 

But nothing happened. Same error appear. Can anybody help?

 

Pls Help me.

 

Below is code.  I am running xampp in my local mechine with Win 7 pro

 

It is config.php

 

 

<?php
$myServer = "sils-pc";
$myUser = "sa";
$myPass = "544Hjy%2*2";
$myDB = "tempDB"; 
    
$conn = new COM ("ADODB.Connection") or die("Cannot start ADO");
$connStr = "PROVIDER=SQLOLEDB;SERVER=".$myServer.";UID=".$myUser.";PWD=".$myPass.";DATABASE=".$myDB; 
$conn->open($connStr); 
?>

 

 

 

<?php
include 'config.php';
$query = "SELECT * FROM vw_Film_Certs_Display order by id";
//$query = mssql_query('SELECT * FROM
.[dbo].[vw_Film_Certs_Display]');
$result = mssql_query($query);
$numRows = mssql_num_rows($result); 
echo "<h1>" . $numRows . " Row" . ($numRows == 1 ? "" : "s") . " Returned </h1>"; 
while($row = mssql_fetch_array($result))
{
  echo "<li>" . $row["id"] . $row["name"] . $row["year"] . "</li>";
}
mssql_close($dbhandle);
?>

 

Please help me

 

 

Link to comment
Share on other sites

  • 1 month later...

Try this

 

$result = mssql_query($query, $conn); 

 

in the place of:

 

$result = mssql_query($query);

 

As you have to specify which connection to use. A page may have multiple db connections

Edited by Round
Link to comment
Share on other sites

putting the [optional] connection parameter into the query statement won't fix the fact that the extension isn't installed.

 

to the OP, if you should happen to visit this thread, starting in php5.3 the mssql extension is no longer available and you must switch your code to use the SQLSRV extension. wherever you found the php_mssql.dll file at, it is likely not complied for the same version of php you are using and isn't loading due to errors (check the web server error log.)

 

this regurgitated information can be found in the mssql documentation at php.net

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.