11/06/2012, 12:04
|
| | Fecha de Ingreso: junio-2012
Mensajes: 16
Antigüedad: 12 años, 7 meses Puntos: 0 | |
Respuesta: Consultar 3 tablas en un DB Warning: mysql_fetch_array() expects parameter 1 to be resource, null given in
me da ese error :(
asi es como inicalmente lo tenia estructurado
<?php
include('conexion2.php');
$nombre=$_GET['nombre'];
$query="select ice.telefono,ice.cedula,padron.nombre,padron.distr ito,ccss.direccion,ccss.salario from ice, padron, ccss where (AQUI ES DONDE SE PIERDE EL ASUNTO PORQUE NO SE Q SIGUE SI ES UN JOIN PARA LAS 3 TABLAS COMPARTAN LA CEDULA EN COMUN O QUE ?)nombre like '%$nombre%' order by nombre asc";
$result= mysql_query($query);
echo "<table id='td' border='1' bordercolor='#000000' name='resultado' cellpadding='0' cellspacing='0'></th><th>TELEFONO</th><th>CEDULA</th><th>NOMBRE</th><th>DISTRITO</th><th>DIRECCION</th><th>SALARIO</th></tr>";
while($fila= mysql_fetch_row($result)){
echo "<tr>";
for($i=0;$i<mysql_num_fields($result) ;$i++){
echo "<td>".$fila[$i]."</td>";
}
echo "</tr>";
}
echo "</table>";
?>
AYUDAAAAAAAAA |