05/04/2012, 14:36
|
| | | Fecha de Ingreso: junio-2010
Mensajes: 755
Antigüedad: 14 años, 7 meses Puntos: 28 | |
Respuesta: buscador php para mysql intente hacer cambios como:
Código PHP:
Ver original<?php header('content-type: text/html; charset=utf-8'); // Si entramos es que todo se ha realizado correctamente include("config/config.php"); $title=$_POST['title']; $website=$_POST['wscb']; $fecsea1=$_POST['fecsea1']; $fecsea2=$_POST['fecsea2']; //busqueda por website-> luego titulo-> luego fecha: $sql = "SELECT * FROM art WHERE website LIKE '$website' AND title MATCH(title) AGAINST ('$title' IN BOOLEAN MODE) AND DATE_FORMAT(create_date_art) BETWEEN '$fecsea1' AND '$fecsea2' ORDER BY art_pk DESC"; ?> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td width="70">ID</td> <td width="400">Title</td> <td width="200">Web Site</td> <td width="150">Fecha Creacion</td> <td width="100">Update Link</td> </tr> <?php //deberia ir un ciclo while dentro de php $id = $printer['art_pk']; $fecha = $printer['create_date_art']; $nombre = $printer['title']; $web = $printer['website']; ?> <tr> <td><?php echo " $id "; ?></td> <td><?php echo " $nombre"; ?></td> <td><?php echo " $web "; ?></td> <td><?php echo " $fecha "; ?></td> <td> <a href="index4.php">Link</a></td> </tr> <?php } //ak terminaria el ciclo While. ?> </table> <?php ?>
ERRORES
Warning: mysql_num_rows() expects exactly 1 parameter, 2 given in C:\xampp\htdocs\liste.php on line 14
Warning: mysql_fetch_array() expects parameter 1 to be resource, null given in C:\xampp\htdocs\liste.php on line 26
__________________ Cooler Master Gladiator 600 - AMD PHENOM II X4 955 @ 3.5GHZ
GA-MA78GM-US2H - Super Talent 800 2GB x 2 Dual, (Unganged)
PSU Cooler Master eXtreme Power Plus 500W - Saphire R7-260OC-2GB |