<?php
mssql_connect("localhost");
mssql_select_db('mabase');
$sql="SELECT * from test";
$req=mysql_query($sql);
while($data=mssql_fetch_array($req))
{
echo $data["nom"];
}
mssql_free_result($req);
mssql_close();
?>
il me donne a l'executionCall to undefined function mssql_connect() in ....
je veux faire une connection avec sqlserver express 2008 en utilisant authentification windows
j ai change la valeur mssql.secure_connection en on dans php.ini mais rien a change a l'execution
comment faire svp