NECESITO REIRECCIONAR UNA PAGINA PHP, ES DE UN FORMULARIO DE CONTACTO Y LA IDEA ES Q UNA VEZ Q SE ENVIA EL MAIL SE REDIRIJA HACIA UNA SECCION DEL SITIO QUE YO QUIERA.
ESTE ES EL CODIGO PHP:
<?php
$nombre = $_POST['text1'];
$mail = $_POST['text2'];
$asunto = $_POST['text3'];
$header = 'From: ' . $mail . " \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 . ", asunto " . $asunto . " \r\n";
$mensaje .= "Su e-mail es: " . $mail . " \r\n";
$mensaje .= "Mensaje: " . $_POST['textarea1'] . " \r\n";
$mensaje .= "Enviado el " . date('d/m/Y', time());
$para = '[email protected]';
$asunto = 'Contacto desde WebSite';
mail($para, $asunto, utf8_decode($mensaje), $header);
echo '&estatus=ok&';
?>
SALUDO Y GRACIAS ESPERO SU RESPUESTA LA NECESITO!!!!