ok, ahora em lo coge bien, pero cuando quiero mandarlo por mail me envia las variables que tengo por SESSION pero los de la misma pagina no me los coge, que estoy haciendo mal?
Cita: // DATOS
$datos ='<html>
<head>
<title>Protocolo de Evaluación Ambiental Preliminar</title>
</head>
<body>
<table cellpadding="10" cellspacing="3" border="0" width="100%"><tr><td>
<table cellpadding="3" cellspacing="3" border="0" width="75%" style="border:1px solid #bbbbbb">
<tr><td colspan="2" bgcolor="#8FB1CB" style="font-size:14px"> Datos personales</td></tr>
<tr><td colspan="2" bgcolor="#CDDDE9" style="font-size:14px"> Nombre y apellidos</td></tr>
<tr><td colspan="2" style="font-size:14px; color:#555555;"> '.$_SESSION["nombre"].'</td></tr>
<tr><td colspan="2" bgcolor="#CDDDE9" style="font-size:14px"> Empresa</td></tr>
<tr><td colspan="2" style="font-size:14px; color:#555555;"> '.$_SESSION["empresa"].'</td></tr>
<tr>
<td bgcolor="#CDDDE9" style="font-size:14px"> Dirección</td>
<td bgcolor="#CDDDE9" style="font-size:14px"> Código Postal</td>
</tr>
<tr>
<td style="font-size:14px; color:#555555;"> '.$_SESSION["direccion"].'</td>
<td style="font-size:14px; color:#555555;"> '.$_SESSION["codigo_postal"].'</td>
</tr>
<tr>
<td bgcolor="#CDDDE9" style="font-size:14px"> Localidad</td>
<td bgcolor="#CDDDE9" style="font-size:14px"> País</td>
</tr>
<tr>
<td style="font-size:14px; color:#555555;"> '.$_SESSION["localidad"].'</td>
<td style="font-size:14px; color:#555555;"> '.$_SESSION["pais"].'</td>
</tr>
<tr>
<td bgcolor="#CDDDE9" style="font-size:14px"> Teléfono</td>
<td bgcolor="#CDDDE9" style="font-size:14px"> Fax</td>
</tr>
<tr>
<td style="font-size:14px; color:#555555;"> '.$_SESSION["telefono"].'</td>
<td style="font-size:14px; color:#555555;"> '.$_SESSION["fax"].'</td>
</tr>
<tr><td colspan="2" bgcolor="#CDDDE9" style="font-size:14px"> Correo electrónico</td></tr>
<tr><td colspan="2" style="font-size:14px; color:#555555;"> '.$_SESSION["mail"].'</td></tr>
</table><td><tr>';
//COMO
$datos.='<tr><td><table cellpadding="3" cellspacing="3" border="0" width="75%" style="border:1px solid #bbbbbb">
<tr><td bgcolor="#8FB1CB" style="font-size:14px"> ¿Cómo nos conoció?</td></tr>';
$options = $_SESSION['quien'];
if ($options){
for ($i=0;$i<count($options);$i++) $datos.= '<tr><td style="font-size:14px; color:#555555;"> '.$options[$i].'<br/></td></tr>';
}
else $datos.= '<tr><td> </td></tr>';
$datos.='</table></td></tr>';
// FORMULARIO
$datos.='<table cellpadding="3" cellspacing="3" border="0" width="75%" style="border:1px solid #bbbbbb">
<tr><td colspan="4" bgcolor="#8FB1CB" style="font-size:14px"> Formulario:</td></tr>';
// SUELOS
$datos.='<tr><td colspan="4" bgcolor="#8FB1CB" style="font-size:14px"> Suelos</td></tr>';
$options = $_POST['suelos1'];
if ($options) $datos.= '<tr><td style="font-size:14px; color:#555555;"> - Se encuentra afectada por Real Decreto 9/2005</td><td>'.$options.'<br/></td></tr>';
$options = $_POST['suelos2'];
if ($options) $datos.= '<tr><td style="font-size:14px; color:#555555;"> - Ha presentado Informe Preliminar de Situación de Suelos (IPS)</td><td>'.$options.'<br/></td></tr>';
$options = $_POST['suelos3'];
if ($options) $datos.= '<tr><td style="font-size:14px; color:#555555;"> - Se han realizado alguna vez análisis de suelos</td><td>'.$options.'<br/></td></tr>';
'</td></tr>';