Parte HTML (Form):
Código:
form id="enviar.php" name="enviar.php" method="POST" action="enviar.php">
<font color="#FFFFFF"><b>Nombre</b></font>:
<input type="text" name="Nombre" size="27"></p>
<p>
<font color="#FFFFFF"><b>E-email</b></font>:
<input type="text" name="Email" size="35"></p>
<p>
<font color="#FFFFFF"><b>Mensaje</b></font>:</p>
<p>
<textarea rows="4" name="Mensaje" cols="39"></textarea></p>
<p><input type="submit" value="Enviar" name="B2">
<input type="reset" value="Reset" name="Reset"></p>
</form>
Codigo PHP:
Código:
<?
$nombre = $_POST['nombre'];
$email = $_POST['Email'];
$header = 'From: ' . $email . " \r\n";
$header .= "X-Mailer: PHP/" . phpversion() . " \r\n";
$header .= "Mime-Version: 1.0 \r\n";
$header .= "Content-Type: text/plain";
$mensaje = "Este mensaje fue enviado por " . $nombre . ", y su mail es " . $email . " \r\n";
$mensaje .= "Mensaje: " . $_POST['mensaje'] . " \r\n";
$mensaje .= "Enviado el " . date('d/m/Y', time());
$asunto = 'ContactoWeb';
$para = 'ServerForgotten@gmail.com
mail($para, $asunto, utf8_decode($mensaje), $header);
echo '&estatus=ok&';
?>
----------------------------------------------------------------------------------------------------------
Otro problema: Registro:
Bueno, puse este codigo para registrarse:
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>StarGazer by Free CSS Templates</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="header">
<h2> </h2>
</div>
<div id="menu">
<ul>
<li><a href="#">Inicio</a></li>
<li><a href="#">Descargas</a></li>
<li><a href="#">Contacto</a></li>
<li><a href="#">Guía Conexión
Registrate Foros
</a><span style="font-size: 1.2em"><b>
</b></span></li>
</ul>
</div>
<hr />
<div id="page">
<div id="content" style="width: 611px; height: 355px">
<div class="post">
<h2 class="title">Registro Forgotten Server Web</h2>
<div class="entry">
<p> </p>
<form action="registrar.php" method="post">
<p>Usuario (max 13):
<input type="text" name="username" size="20" maxlength="13" /><br />
Password (max 10):
<input type="password" name="password" size="10" maxlength="10" />
Confirma: <input type="password" name="password2" size="10" maxlength="10" /><br />
Email (max 40):
<input type="text" name="email" size="20" maxlength="40" /></p>
<p><br />
<input type="submit" value="Registrar" />
</form>
<?php
}
// verificamos si se han enviado ya las variables necesarias.
if (isset($_POST["username"])) {
$username = $_POST["username"];
$password = $_POST["password"];
$password2 = $_POST["password2"];
$email = $_POST["email"];
// Hay campos en blanco
if($username==NULL|$password==NULL|$password2==NULL|$email==NULL) {
echo "un campo está vacio.";
formRegistro();
}else{
// ¿Coinciden las contraseñas?
if($password!=$password2) {
echo "Las contraseñas no coinciden";
formRegistro();
}else{
// Comprobamos si el nombre de usuario o la cuenta de correo ya existían
$checkuser = mysql_query("SELECT usuario FROM usuarios WHERE usuario='$username'");
$username_exist = mysql_num_rows($checkuser);
$checkemail = mysql_query("SELECT email FROM usuarios WHERE email='$email'");
$email_exist = mysql_num_rows($checkemail);
if ($email_exist>0 | $username_exist>0) {
echo "El nombre de usuario o la cuenta de correo estan ya en uso";
formRegistro();
}else{
$query = 'INSERT INTO usuarios (usuario, password, email, fecha)
VALUES (\''.$username.'\',\''.$password.'\',\''.$email.'\',\''.date("Y-m-d").'\')';
mysql_query($query) or die(mysql_error());
echo 'El usuario '.$username.' ha sido registrado de manera satisfactoria.<br />';
echo 'Ahora puede entrar ingresando su usuario y su password <br />';
?>
<FORM ACTION="validar_usuario.php" METHOD="post">
Usuario : <INPUT TYPE="text" NAME="usuario" SIZE=20 MAXLENGTH=20><br />
Password: <INPUT TYPE="password" NAME="password" SIZE=10 MAXLENGTH=10><br />
<INPUT TYPE="submit" VALUE="Ingresar">
</FORM>
<?php
}
}
}
}else{
formRegistro();
}
?>
</p>
</div>
<p class="meta"><span class="byline"> </span></p>
</div>
</div>
<p>
<!-- end #content -->
</p>
<div id="sidebar">
<ul>
<li id="search">
<form id="searchform" method="get" action="">
<div>
<input type="text" name="s" id="s" size="15" />
<br />
<input name="submit" type="submit" value="Search" />
</div>
</form>
</li>
<li id="calendar">
<h2>Login</h2>
<div id="calendar_wrap">
<b><font face="serif" size="3">Usuario: </font></b>
<input type="text" name="s0" id="s0" size="11" /><p><b>
<font face="tim" size="3">Password: </font></b>
<input type="text" name="s1" id="s1" size="16" /> </p>
<p>
<input type="submit" value="Ingresar" name="Ingresar"></p>
<p> </div>
</li>
<li>
<h2>Categories</h2>
<ul>
<li><a href="#" title="View all posts filed under Uncategorized">Uncategorized</a> (3) </li>
<li><a href="#" title="View all posts filed under Lorem Ipsum">Lorem Ipsum</a> (42) </li>
<li><a href="#" title="View all posts filed under Urna Congue Rutrum">Urna Congue Rutrum</a> (28) </li>
<li><a href="#" title="View all posts filed under Augue Praesent">Augue Praesent</a> (55) </li>
<li><a href="#" title="View all posts filed under Vivamus Fermentum">Vivamus Fermentum</a> (13) </li>
</ul>
</li>
</ul>
<div style="clear: both; height: 40px;"> </div>
</div>
<!-- end #sidebar -->
<div style="clear: both;"> </div>
</div>
<!-- end #page -->
<hr />
<div id="footer">
<p>(c) 2008 Forgotten. Desarrollado por PeNgUiN.</p>
</div>
</body>
</html>
Y cuando quiero ir a registrarme para probar mire lo que aparece:
Cosa como si se hubiera abierto una estructura o llave y nunca cerrado.
¿Me pueden ayudar?
Se los agradecería, saludos!.