11/06/2012, 12:19
|
| | Fecha de Ingreso: junio-2012
Mensajes: 16
Antigüedad: 12 años, 5 meses Puntos: 0 | |
Respuesta: arning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean gi elgoncho99 perdon por seguir molestando , esta es la estructura de la busqueda Cita: <?php
include('conexion2.php');
$nombre=$_GET['nombre']; <!--este es el patron inicial de busqueda-->
$query="select ice.telefono,ice.cedula,padron.nombre,padron.distr ito,ccss.direccion,ccss.salario from ice, padron, ccss where (AQUI ES DONDE NO SE QUE MAS PONER O CMO ACOMODAR LOS JOIN PARA QUE ME DEN EL RESULTADO INDICADO)
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>";
?> |