Ver Mensaje Individual
  #4 (permalink)  
Antiguo 24/04/2008, 03:07
Avatar de jerkan
jerkan
 
Fecha de Ingreso: septiembre-2005
Mensajes: 1.607
Antigüedad: 18 años, 7 meses
Puntos: 19
Re: listar datos desde la bd

Los enlaces deberían ser algo así:
Código PHP:
script.php?categoria=
Luego, en script.php:
Código PHP:
$categoria $_GET['categoria'];
$where = empty($categoria) ? "" "WHERE categoria = '$categoria'";
qry=mysql_query("select producto,author,description,precio from catalogo $where order by producto asc");