Tengo esto:
Código PHP:
<?php
include ("conexion.php");
mysql_query("UPDATE asignacionv SET interno=".$_POST["interno"].", fechas='".$_POST["fechas"]."', estado='".$_POST["estado"]."' WHERE interno=".$_REQUEST["int"].";", $conexion);
mysql_close($conexion);
header("location:inicio.php");
?>
Se puede hacer esto?
Desde ya muchísimas gracias.