Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/10/2008, 20:54
chuekeron
 
Fecha de Ingreso: octubre-2008
Ubicación: Bs. As., ARG
Mensajes: 203
Antigüedad: 15 años, 6 meses
Puntos: 6
Redireccionar pagina php - contacto

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 '&amp;estatus=ok&amp;';
?>

SALUDO Y GRACIAS ESPERO SU RESPUESTA LA NECESITO!!!!