So I keep getting this error when I want to request something on ms sql server.
The connection is made to the database, but the queries seem to fail.
The error log contains the following:
PHP Fatal error: Call to undefined function mssql_query()
Php code:
session_start(); include_once("connect.php"); if (isset($_POST['username'])) { $username = $_POST['username']; $password = $_POST['password']; $sql = "SELECT * FROM test WHERE username='".$username."' AND password='".$password."'"; $res = mssql_query ($sql) or die(mssql_error()); if (mssql_num_rows($res) == 1) { $row = mssql_fetch_assoc($res); $_SESSION['uid'] = $row['id']; $_SESSION['username'] = $row['Username']; $_SESSION['afdeling'] = $row['Afdeling']; $_SESSION['mail'] = $row['Mail']; header("Location: test.php"); exit(); } else { echo "Invalid login information. Please return to the previous page."; exit(); } } ?>
Does anyone know what the problem is?
Thanks in advance!
connect.php code:
<?php $serverName = "MTN-TEST"; //serverName\instanceName $connectionInfo = array( "Database"=>"PROCES_TEST", "UID"=>"blaaa", "PWD"=>"blooo"); $conn = sqlsrv_connect( $serverName, $connectionInfo); if( $conn ) { echo "<span style='color:green;'>Connection established.</span><br />"; }else{ echo "<span style='color:red;'>Connection could not be established.</span><br />"; die( print_r( sqlsrv_errors(), true)); } ?>
source share