Advertisement
Valian

Untitled

Jan 13th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1.     function modCot($rutc ,$rutt, $descripcion, $estado, $vneto, $viva, $vtotal)
  2.     {  
  3.         $connect = conexion();
  4.         $query="UPDATE cotizaciones SET rut_trabajador='$rutt', descripcion='$descripcion', estado='$estado',       valor_neto='$vneto', valor_iva='$viva', valor_total='$vtotal' WHERE rut_cliente='$rutc'";
  5.         mysqli_query($connect,$query)or die (mysqli_error($connect));
  6.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement