Código PHP:
$arrNoticias = array();
$query = "SELECT * FROM `noticias` WHERE fPublicacion < '".date('Y-m-d H:i:s')."' ORDER BY fPublicacion DESC";
$resultado = mysql_query ($query, $dbConn);
while ( $row = mysql_fetch_assoc ($resultado))
{
array_push( $arrNoticias,$row );
}