tengo mi pagina en php que se llama home.php dentro de esta tengo el formulario que envio a registrar.php y esta me resuelve mis peticiones
home.php
Código 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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>INICIO DE SESIÓN</title>
</head>
<body>
<div id="add">
<form id="form1" name="form1" method="post" action="registrar.php">
<table width="200" border="0">
<tr>
<td> </td>
<td>Nombre:</td>
<td>
<input type="text" name="name" id="name" /></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Direccion:</td>
<td>
<input type="text" name="direc" id="direc"/></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Telefono</td>
<td>
<input type="text" name="tel" id="tel" /></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Email:</td>
<td>
<input name="email" type="text" id="email" /></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Password</td>
<td>
<input type="password" name="pass" id="pass" /></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Fecha</td>
<td>
<input type="text" name="hoy" id="hoy" value="<?php
echo date("d-m-Y");
?>" disabled="disabled"/></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td><input type="submit" id="boton" value="Registrar" /></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td><?php echo $error; ?></td>
<td> </td>
</tr>
</table>
</form>
</div>
</body>
registro.php
Código PHP:
<?php
error_reporting ( E_ERROR );
$con = mysql_connect("localhost","root","");
if (!$con){
die('Could not connect: ' . mysql_error());
}
mysql_select_db("mk2013", $con);
$name=$_POST['name'];
$direc=$_POST['direc'];
$tel=$_POST['tel'];
$email=$_POST['email'];
$pass=$_POST['pass'];
$hoy=date("j, n, Y");
if(!isset($name)){
echo "";
}else{
if($name==""){
echo "debes de insertar el nombre";
}else{
if($direc==""){
echo "debes de insertar la direc";
}else{
if($tel==""){
echo "debes de insertar el tel";
}else{
if($email==""){
echo "debes de insertar el email";
}else{
if($pass==""){
echo "debes de insertar el pass";
}else{
$result = mysql_query("SELECT Email FROM usuarios WHERE Email='$email'");
$row=mysql_num_rows($result);
if($row==1) {
echo "el usuario existe";
}else{
$insertar="INSERT INTO usuarios (Nombre, Direccion, Telefono, Email, Password, Fecha) ".
"VALUES ('$_POST[name]','$_POST[direc]', '$_POST[tel]', '$_POST[email]', '$_POST[pass]', '$_POST[hoy]')";
if (!mysql_query($insertar,$con)) {
die('Error: ' . mysql_error());
}else{
echo "Nuevo Contacto Ingresado con Exito";
}
}
}
}
}
}
}
}
mysql_close($con);
?>
home.php y no me salte a registro el codigo funciona bien solo que es dependiente del lado de servidor y busco que esto no sea visible solo que he intentado hacerlo con ajax y no me resulta como quiero.
agradeceria su ayuda al respecto