Ver Mensaje Individual
  #11 (permalink)  
Antiguo 23/08/2012, 06:00
webankenovi
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: codigo php actualizar

Código PHP:
Ver original
  1. <?php
  2. include('_conec.php');
  3. $b1=$_POST['paterno'];
  4. $b2=$_POST['materno'];
  5. $b3=$_POST['nombre'];
  6. $b4=$_POST['direccion'];
  7. $b5=$_POST['telefono'];
  8. $b6=$_POST['nacimiento'];
  9. $codigo=$_GET['id'];
  10. $sql="update datos set alupat='$b1',alumat='$b2',
  11. alunom='$b3',aludir='$b4',alutel='$b5',alunac='$b6'
  12. where alucod='$codigo' ";
  13. $exito=mysql_query($sql) or die (mysql_error());
  14. if ($exito==1){
  15. header('location: resultados.php');
  16. }
  17. ?>