Ver Mensaje Individual
  #8 (permalink)  
Antiguo 02/08/2004, 18:45
iarrieta
 
Fecha de Ingreso: noviembre-2002
Ubicación: Colombia
Mensajes: 278
Antigüedad: 22 años
Puntos: 0
ahora lo tengo en orden pero me sigue arrojando todos los resultados. Se que me falta algo antes del select pero no estoy claro en que cosa...

Código PHP:
<?
include("config.php");
   
$sql="SELECT * FROM origen inner join destino on origen.hacia=destino.hacia ORDER BY salida"
$res=mysql_query($sql);

    echo 
"<table border=1 cellpadding=2 cellspacing=0 bordercolor=#006699>";
    echo 
"<tr valign=middle><td align=center width=100>LINEA AEREA</td>";
    echo 
"<td align=center width=50>VUELO</td>";
    echo 
"<td align=center width=100>SALIDA</td>";
    echo 
"<td align=center width=100>LLEGADA</td>";
    echo 
"<td align=center width=50>FRECUENCIA</td>";
    echo 
"<td align=center width=50>AVION</td>";
    echo 
"<td align=center width=50>ESCALA</td></tr><br>";
    echo 
"</table>";
 
while(
$row=mysql_fetch_array($res)){
 
    echo 
"<table border=1 cellpadding=2 cellspacing=0 bordercolor=#006699>";
    echo 
"<tr valign=middle><td align=center width=100>".$row['linea']."</td>";
    echo 
"<td align=center width=50>".$row['vuelo']."</td>";
    echo 
"<td align=center width=100>".$row['salida']."</td>";
    echo 
"<td align=center width=100>".$row['llegada']."</td>";
    echo 
"<td align=center width=50>".$row['frecuencia']."</td>";
    echo 
"<td align=center width=50>".$row['avion']."</td>";
    echo 
"<td align=center width=50>".$row['escala']."</td></tr>";
    }
    echo 
"</table>";
?>