hola a todos,
al tratar de hacer el UPDATe me arroja el siigueinte error, en que estoy fallando?
Fatal error: Call to undefined function mssql_query() in C:\Program Files\VertrigoServ\www\Gisis\meco_2.php on line 8
y aqui el codigo....
Código PHP:
Ver original<?php
$dsn = "Driver={SQL Server};Server=MILENIUN\SQLEXPRESS;Database=C04;Integrated Security=SSPI;Persist Security Info=False;";
$sql = "UPDATE FACENCABEZADOFACTURAVENTA
SET FACImpresoEncabezadoFacturaVenta = 'false'
WHERE (FACNumeroFacturaVentaEncabezadoFacturaVenta = '000000000049614')";
if (!$res) {
print("SQL statement failed with error:\n");
} else {
print("$number_of_rows rows updated.\n");
}
?>