ya lo corregí, no me da ningún error de sintaxis pero no me esta haciendo el registro, que podrá estar mal?
el codigo final quedo asi:
Código HTML:
<!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" -->
<div id="cuadroregistro">
<form method="post" name="form1" id="form1">
Eres: Estudiante: <input name="tipo" type="radio" value="1" method="post" />
Docente:<input name="tipo" type="radio" value="0" method="post"/>
<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"> </td>
<td><input type="submit" value="Insertar registro" name ="submit"/></td>
</tr>
</table>
</form>
<p> </p>
</div>
<?php
require_once('Connections/local.php');
if(isset($_POST)){ //Si te da problemas prueba: if(isset($_POST['submit']){
$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)){
//REDIRIGIR OK
header('Location: '.$newURL);
}
else {
$error = "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)){
//REDIRIGIR OK
header('Location: '.$newURL);
}
else {
$error = "Fallo en el registro";
}
}
}
?>
<!-- end .content -->
<!-- InstanceEndEditable --></div>
<div class="footer">
<?php include("includes/pie.php"); ?>
</div>
<!-- end .container --></div>
</body>
<!-- InstanceEnd --></html>