Hello all,
I have a problem connecting to a MS SQL databse, I have this code:
<?php
function conexion()
{
$con_id = mssql_connect("ServerName", "Username", "Password");
mssql_select_db("DB");
return ($con_id);
}
?>
But I get this error:
Fatal error: Call to undefined function: mssql_connect() in conexion_bd.php on line 4
Could anyone help me please??