Hola. ¿Alguien sabría decirme por qué no me funciona el implode, por favor?
Código PHP:
Ver originalforeach ($_GET as $key => $value){
if ($_GET[$value]) {
$where[]="'".$_GET['key']."=".$_GET['value']."'";
}
}
$sql = "SELECT * FROM libros WHERE ".implode(" AND ",$where).";";