Les dejo el código para ver si alguien me puede ayudar a descifrar
cual es el problema
Código PHP:
<?php
session_start();
$data=$HTTP_POST_VARS;
$femail=$_POST['email'];
session_register('data');
$bd="<table border='1'>";
while(list($k,$v)=each($data)){
$bd.="<tr><td>$k: </td>\t\t<td> $v</td> </tr>\n";
}
$bd.="</table>";
$headers="From: Formulario de Registro\r\n";
$headers.= "Content-type: text/html; charset=iso-8859-1\r\n";
//CREADO POR PACO NOVELLINO
mail("[email protected]","Formulario de Registro",$bd,$headers);
echo "<script> alert('Gracias por su Registro!');</script>";
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>enviando</title>
<script name="javascript" type="text/javascript">
window.location = 'http://'
</script>
</head>
<body>
redireccionando...
</body>
</html>