Ver Mensaje Individual
  #13 (permalink)  
Antiguo 06/06/2012, 13:09
otaku1976
 
Fecha de Ingreso: mayo-2012
Mensajes: 10
Antigüedad: 12 años
Puntos: 0
Respuesta: Php html mysql

SOLUCIONADO
Agradezco a todos por sus comentarios ya q me dieron otros puntos de vista.
dejo la solucion por si alguien lo necesita

<?php
include("Conectarse.php");
$link=Conectarse();

$Sql="UPDATE `helpdesk`.`ticket`
SET `tic_f_final` = '".$_POST["tic_f_final"]."',
`tic_respuesta` = '".$_POST["tic_respuesta"]."',
`tic_pendientes` = '".$_POST["tic_pendientes"]."',
`tic_tecnico2` = '".$_POST["tic_tecnico2"]."',
`tic_tecnico3` = '".$_POST["tic_tecnico3"]."',
`tic_estado2` = '".$_POST["tic_estado2"]."'
WHERE `ticket`.`tic_numero` ='".$_POST["tic_numero"]."' LIMIT 1 ";
mysql_query($Sql,$link);
header("Location: modificar_entrega.php");
?>