Código PHP:
<?PHP
$descuento = $_GET['descuento'];
if (!empty ($descuento) ) {
$arrNoticias = array();
$query = 'SELECT * FROM `noticias` WHERE descuento < " " ORDER BY RAND()';
$resultado = mysql_query ($query, $dbConn);
while ( $row = mysql_fetch_assoc ($resultado))
{
array_push( $arrNoticias,$row );
}
//ACA SE MOSTRARAN LOS RESULTADOS ENCONTRADOS
?>