
30/10/2004, 13:45
|
 | | | Fecha de Ingreso: octubre-2003 Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 21 años, 4 meses Puntos: 11 | |
$result=mysql_query("select habitacion from tabla",$con);
while($row=mysql_fetch_array($result))
{
if($row['habitacion']=="singlebath")
echo "Individual con baño";
if($row['habitacion']=="doublebath")
echo "Doble con baño";
etc...
} |