Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/05/2008, 08:19
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 17 años, 11 meses
Puntos: 2135
Re: Exportar datos de BBDD

Código PHP:
echo "<table><tr>";
while (
$field mysql_fetch_field($result)){
echo 
"<th>" $field->name "</th> \n";
}

echo 
"</tr> \n";
do {
echo 
"<tr> \n";
echo 
"<td><span class=\"estilo2\">".$row["fecha de alta"]."</td> \n";
echo 
"<td><span class=\"estilo2\"><a href='busc.php?ID=".$row["id_animal"]."'>".$row["nombre animal"]."</td> \n";
echo 
"<td><span class=\"estilo\">".$row["provincia"]."</td> \n";
echo 
"<td><span class=\"estilo2\">".$row["raza"]."</td> \n";

echo 
"<td><span class=\"estilo\">".$row["familia"]."</td> \n";

echo 
"</tr> \n";
} while (
$row mysql_fetch_array($result));
echo 
"</table> \n";

Saludos.