cooro
New Member
- Messages
- 6
- Reaction score
- 0
- Points
- 0
I have a little problem. I´ve done a simple form in php, but it doesn´t work....
the website is this one: http://www.getsuryuu.x10hosting.com/staff.html
the codes are these:
Form Code (html)
Send (php)
There said that the 21 line is disabled... what should I do?
the website is this one: http://www.getsuryuu.x10hosting.com/staff.html
the codes are these:
Form Code (html)
HTML:
<form id="form1" name="form1" method="post" action="staff.php">
<p>Nombre:<br />
<label>
<input name="nombre" type="text" id="nombre" />
</label>
<br />
Cargo al que aspiras:<br />
<input name="cargo" type="text" id="cargo" />
<br />
Email:<br />
<input name="email" type="text" id="email" />
<br />
Proyecto en el que quieres trabajar:<br />
<input name="proyecto" type="text" id="proyecto" />
<br />
Comentarios:<br />
<textarea name="mensaje" id="mensaje"></textarea>
<br />
<label>
<input type="submit" name="Submit" value="Enviar Formulario" />
</label>
</p>
</form>
Send (php)
PHP:
<?php
$mail='getsuryuu@gmail.com';
$nombre = $_POST['nombre'];
$cargo = $_POST['cargo'];
$email = $_POST['email'];
$proyecto = $_POST['proyecto'];
$mensaje = $_POST['mensaje'];
$thank="gracias staff.html";
$message = "
nombre:".$nombre."
cargo:".$cargo."
email:".$email."
proyecto:".$proyecto."
mensaje:".$mensaje."";
if (mail($mail,"form",$message))
Header ("Location: $thank");
?>
There said that the 21 line is disabled... what should I do?