Tema: php en html
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/02/2014, 13:57
mktalternativa
 
Fecha de Ingreso: enero-2012
Mensajes: 224
Antigüedad: 12 años, 10 meses
Puntos: 1
php en html

Hola estoy queriendo poner un while dentro de una funcion mail de php y la verdad no consigo hacerlo , les paso el codigo a ver si pueden darme una mano o recomenadrme algun manual, gracias


Código:

$message = "
<html>
<head>
<title>HTML email</title>
</head>
<body>
<p>Reclamos del dia " .$tiempo."</p>
<table>
<tr>
<th>Numero de Reclamo</th>
<th>Area</th>
<th>Responsable</th>
<th>Cargado por</th>
<th>Estado</th>
<th>localidad</th>

</tr>
<tr>"
while ($row_consulta = mysql_fetch_assoc($consulta)) {
    echo $row_consulta["area"];
    echo $row_consulta["titulo"];
    echo $row_consulta ["detalle"];
}
"

<td>John</td>
<td>Doe</td>
<td>John</td>
<td>Doe</td>
<td>John</td>
<td>Doe</td>
</tr>
</table>
</body>
</html>
";