Ver Mensaje Individual
  #9 (permalink)  
Antiguo 29/05/2015, 15:48
diegodelpiero
 
Fecha de Ingreso: mayo-2015
Mensajes: 53
Antigüedad: 9 años, 6 meses
Puntos: 0
Respuesta: Insertar registro a dos tablas según la eleccion

tendra algo que ver el que lo hago todo en la misma ventana?

porque este es el código total de la pagina:

Código HTML:
<?php require_once('Connections/local.php'); ?>

<!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"><!-- InstanceBegin template="/Templates/plantillabase.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>Documento sin título</title>
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
<link href="css/estiloprincipal.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/menu.css" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Belleza&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link href="css/cuadroregistro.css" rel="stylesheet" type="text/css" />
<link href="css/cuadrologin.css" rel="stylesheet" type="text/css" />
<link href="css/cuadrosubircurso.css" rel="stylesheet" type="text/css" />
</head>

<body>

<div class="container">
  <div class="header">
  <?php include("includes/cabecera.php"); ?>
  <div class="clearfloat"></div>
  <?php include("includes/menu.php"); ?>

    <?php include("includes/sesion.php"); ?>
  
</div>
  <div class="sidebar1"><!-- InstanceBeginEditable name="ContenidoIzq" -->
  <a href="suma.php"><img src="images/Azul.jpg" width="250" height="50" alt="azul" /></a>
      <a href="resta.php"><img src="images/Naranja.jpg" width="250" height="50" alt="naranja" /></a>
	  <a href="multiplicacion.php"><img src="images/Violeta.jpg" width="250" height="50" alt="violeta" /></a>
	  <!-- InstanceEndEditable --><!-- end .sidebar1 --></div>
  <div class="content"><!-- InstanceBeginEditable name="ContenidoDer" -->
  Eres: Estudiante: <input name="tipo" type="radio" value="1" method="post" /> 
  Docente:<input name="tipo" type="radio" value="0" method="post"/>
  
  <div id="cuadroregistro">
  <form method="post" name="form1" id="form1">
    <table align="center">
      <tr valign="baseline">
        <td nowrap="nowrap" align="right">Documento:</td>
        <td><input type="text" name="estudianteId" value="" size="32" /></td>
      </tr>
      <tr valign="baseline">
        <td nowrap="nowrap" align="right">Nombre:</td>
        <td><input type="text" name="estudianteNombre" value="" size="32" /></td>
      </tr>
      <tr valign="baseline">
        <td nowrap="nowrap" align="right">Correo:</td>
        <td><input type="text" name="estudianteCorreo" value="" size="32" /></td>
      </tr>
      <tr valign="baseline">
        <td nowrap="nowrap" align="right">Clave:</td>
        <td><input type="text" name="estudianteClave" value="" size="32" /></td>
      </tr>
      <tr valign="baseline">
        <td nowrap="nowrap" align="right"></td>
      
      </tr>
      <tr valign="baseline">
        <td nowrap="nowrap" align="right">&nbsp;</td>
        <td><input type="submit" value="Insertar registro" name ="submit"/></td>
      </tr>
    </table>
   
  </form>
  <p>&nbsp;</p>
</div>
  
<?php



$tipo =$_POST['tipo'];
$documento =$_POST['estudianteId'];
$nombre =$_POST['estudianteNombre'];
$correo =$_POST['estudianteCorreo'];
$contrasena =$_POST['estudianteClave'];

if ($tipo==1)
{
	$insertar="insert into estudiantes(estudianteId, estudianteNombre, estudianteCorreo, estudianteClave') values ('$documento','$nombre','$correo','$contrasena')";
	if (mysql_query($insertar)){
	echo "materia registrada";}
	else {
	echo "fallo en el registro";
	}
}
else if($tipo==0){
	$insertar="insert into docentes(docenteId, docenteNombre, docenteCorreo, docenteClave') values ('$documento','$nombre','$correo','$contrasena')";
	if (mysql_query($insertar)){
	echo "materia registrada";}
	else {
	echo "fallo en el registro";
	}
}

?>
  


 <!-- end .content -->
<!-- InstanceEndEditable --></div>
  <div class="footer">
 <?php include("includes/pie.php"); ?>
 </div>
  <!-- end .container --></div>
</body>
<!-- InstanceEnd --></html>