PHP 4.0.4 and MSSQL

admin

Administrator
Staff member
I just installed php 4.0.4 on a W2K with IIS 5.0 and SQL Server 7.0.

Every INSERT in a mssql_query() function return FALSE. It works ok with php 4.0.3pl1.

.
.
.
$res = mssql_query("INSERT ...", $con);
if($res == FALSE) {
print "Error";
}
.
.
.
A bug of php, or mine? :-)
 
Back
Top