Código PHP:
<link rel='stylesheet' href='estilos.css'>
<?php
if(empty($_POST['titulo'])) {
?>
<form class="contacto" action="<?=$_SERVER['PHP_SELF']?>" method="post" >
<label>SI ESTAS AQUÍ ES POR QUE SEGURO NO LLENASTE EL CAMPO :D ASÍ QUE VUELVELO A INTENTAR</label>
Titulo:<input type="text" name="titulo" />
<textarea name="mensaje" rows="3" cols="50"></textarea><input type="submit" value="PUBLICAR
YA
"/>
</form>
<?php
}else{
$mensaje.= $_POST['titulo'];
$mensaje.= $_POST['mensaje'];
$destino= "[email protected]";
$remitente = "[email protected]";
$asunto = "".$_POST['titulo'];
mail($destino,utf8_decode($asunto),utf8_decode($mensaje),"FROM: $remitente");
?>
<p><strong>Yeahh tu chiste fue recibida.</strong></p> En un par de segundos se posteara no te olvides de publicarlo en tu muro <a href="http://frasesfeis.blogspot.com" target="_parent">clic aquí para ver</a>
<?php
}
?>