Tabla 1 llamada live
---------------------------------------
- id - nom - direc - cont -
---------------------------------------
- 1 - ald - http... - 90 -
- 2 - rog - https.. - 20 -
- 3 - rel - http.... - 30 -
---------------------------------------
Tabla 2 llamada live2
---------------------------------------
- id - nom - direc - cont -
---------------------------------------
- 1 - rom - http... - 25 -
- 2 - gmt - https.. - 35 -
- 3 - arn - http.... - 70 -
---------------------------------------
lo que quiero es unir las 2 tablas como si fuera 1 y que el resultado sea asi ordenado con el campo (cont) --- estuve averiguando es que se puede con UNION
---------------------------------------
- id - nom - direc - cont -
---------------------------------------
- 1 - ald - http... - 90 -
- 3 - arn - http.... - 70 -
- 2 - gmt - https.. - 35 -
- 3 - rel - http.... - 30 -
- 1 - rom - http... - 25 -
- 2 - rog - https.. - 20 -
---------------------------------------
pues antes trabajaba con una tabla 1 y lo usaba asi
Código PHP:
<?
include "conexion.php";
$sent="select * from live where nom like '%' order by ABS(cont) DESC limit 200";
$res = mysql_query($sent, $conn);
while($row = mysql_fetch_array($res)){?>
<linea blog="<?=$row['nom'];?>" direccion="<?=$row['direc'];?>"/>
<?
}
?>
disculpen que sea tan burro pero recien le entro a este facinante mundo de MYSQL y PHP pero en este caso como seria esto:
Código PHP:
<?
include "conexion.php";
$sent="select * from live where nom like '%' order by ABS(cont) DESC limit 200";
$res = mysql_query($sent, $conn);
while($row = mysql_fetch_array($res)){?>
<linea blog="<?=$row['nom'];?>" direccion="<?=$row['direc'];?>"/>
<?
}
?>