q tal esto,
Código PHP:
<?php
$state = false;
if ($_POST['action'] == "add") {
$conexion = mysql_connect("mysqlhost5", "622862_lutaj", "ltapia");
mysql_select_db("622862_corpor", $conexion);
$categoria=$_POST['categoria'];
$carrera=$_POST['carrera'];
$apellidos=$_POST['apellidos'];
$nombre=$_POST['nombre'];
$sexo=$_POST['sexo'];
$edad=$_POST['edad'];
$localidad$_POST['localidad'];
$club=$_POST['club'];
$emial=$_POST['email'];
$federado=$_POST['federado'];
$numero=$_POST['numero'];
$pagado=$_POST['pagado'];
$que = "INSERT INTO circuito (categoria, carrera, apellidos, nombre, sexo, edad, localidad, club, email, federado, numero, pagado) ";
$que.= "VALUES ('$categoria','$carrera','$apellidos','$nombre','$sexo','$edad','$localidad','$club','$email','$federado','$numero','$pagado')";
$res = mysql_query($que, $conexion) or die(mysql_error());
$state = true;
$que1 = "INSERT INTO csr (carrera, apellidos, nombre, sexo, edad, localidad, club, email, federado, numero) ";
$que1.= "VALUES ('$carrera','$apellidos','$nombre','$sexo','$edad','$localidad','$club','$email','$federado','$numero')";
$res = mysql_query($que1, $conexion) or die(mysql_error());
$state = true;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>CIRCUITO SOLO RUNNERS</title>
</head>
<body>
<div id="content">
<form name="frm" method="post" action="" onSubmit ="return Verificar()">
<p><label>Carrera:</label>
<select name="carrera">
<option>QUEL
<option>SARTAGUDA
</select></p>
<p>Apellidos:<input name="apellidos" type="text" id="apellidos" size="40" />
</p>
<p>Nombre: <input name="nombre" type="text" id="nombre" size="40" />
</p>
<p>Sexo:
<input type="radio" name="sexo" value="H" checked />Hombre
<input type="radio" name="sexo" value="M"/>Mujer
</p>
<p>Fecha nacimiento: <input name="edad" value="DD/MM/AAAA" type="text" id="edad" size="40" /> </p>
<p>Localidad:<input name="localidad" type="text" id="localidad" size="40" /> </p>
<p>Club: <input name="club" type="text" id="club" size="40" /></p>
<p>Federado?
<input type="radio" name="federado" value="SÍ" />SÍ
<input type="radio" name="federado" value="NO" checked />NO
</p>
<p>Número:<input name="numero" type="text" id="numero" size="40" />
</p>
<p>Email:<input name="email" type="text" id="email" size="40" /></p>
<br />
<input type="submit" name="Submit" value="Inscribirme" />
<input type="hidden" name="action" value="add" />
</div>
</form>
</body>
</html>
suerte