quisiera saber que me esta fallando por ya llevo haciendo muchas maneras y no logro haer que se guarde en esta tabla
Código
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <marquee bgcolor="#0000CC"> INGRESE SUS DATOS</marquee> <form id="form1" name="form1" method="post" action="Datospersonales.php"> <table width="353" border="0"> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> <select name="genero" id="genero"> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> </table> <p> <input type="submit" name="Enviar" id="Enviar" value="Enviar" /> </p> </form> <body background="file:///C:/Users/Desktop/carpetas%20de%20cosas/desarrollo/conacyt2.png"> </body> </html>
Código
<?php include("conexion4.php"); if($_POST){ $id=$_POST['id']; $nombres=$_POST['nombres']; $paterno=$_POST['paterno']; $materno=$_POST['materno']; $id_civil=$_POST['id_civil']; $direccion=$_POST['direccion']; $correop=$_POST['correop']; $correoa=$_POST['correoa']; $tcelular=$_POST['tcelular']; $tcasa=$_POST['tcasa']; $ttrabajo=$_POST['ttrabajo']; $f_nacimiento=$_POST['f_nacimiento']; $genero=$_POST['genero']; $pais_nacimiento=$_POST['pais_nacimiento']; $edo_nacimiento=$_POST['edo_nacimiento']; $nacionalidad=$_POST['nacionalidad']; $identidad=$_POST['identidad']; $foto=$_POST['foto']; } if(Enviar=="Enviar"){ $insertar= "INSERT INTO tb_personales(id,nombres,paterno,materno,id_civil,direccion,correop,correoa,tcelular,tcasa,ttrabajo,f_nacimiento,genero,pais_nacimiento,edo_nacimiento,nacionalidad,identidad,foto) VALUES('$id','$nombres','$paterno','$materno','$id_civil','$direccion','$correop','$correoa','$tcelular','$tcasa','$ttrabajo','$f_nacimiento','$genero','$pais_nacimiento','$edo_nacimiento','$nacionalidad','$identidad','$foto')"; <?php