Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/12/2014, 21:23
cesarcarmonad
Invitado
 
Mensajes: n/a
Puntos:
Pregunta Php no me funciona

Estoy aprendiendo a programar razon por la cual acudo aqui, no me queda un formulario que intento hacer, ¿alguien tiene un php que me ayuda para que el siguiente codigo funcione? gracias de antemano

<div class="form">
<form method="post" action="sendmail.php">
<input type="text" class="textbox" value=" Name" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Name';}">
<input type="text" class="textbox" value="Email" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Email';}">
<div class="clear"> </div>
<div>
<textarea value="Message:" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = ' Message';}">Message</textarea>
</div>
<div class="button send_button">
<input type="submit" value="Send">
</div>
<div class="clear"> </div>
</form>