|
|
//Buble de IMAGENES DE INSTALACIÓN
$sel_noticias = 'SELECT * FROM videos '.$filtro.$orden_by;// WHERE '.$filtropage.';';
$ds_noticias = mysql_query($sel_noticias);
$iimages = mysql_num_rows($ds_noticias);
if ($iimages == 0){
?>
NO se han encontrado videos. Disculpe las molestias.
} else {
?>
//Paso los registros anteriores si procede...
if ( $ipage >0 ){
$iregsanteriores = $ipage * ($icol_by_row * $irow_by_page)-1;
while( ($row_noticia = mysql_fetch_array($ds_noticias)) && ($iregs < $iregsanteriores)){
$iregs = $iregs + 1;
};
};
$iregs = 0;
while( ($row_noticia = mysql_fetch_array($ds_noticias)) && ($iregs < $istop)){
if ($row_noticia['PESO'] > 0 ){
$enlace_video = './videos/fichavideo.php?idref='.$row_noticia['ID'];
} else {
//$enlace_video = 'javascript:lanza_ficha('.$row_noticia['ID'].')';
$enlace_video = $row_noticia['ARCHIVO'];//URL de youtube o similar
};
?>
|
//Fin de un regisrto
if ($icol < $icol_by_row){
$icol = $icol + 1;
} else {
$icol = 1;
?>
};
$iregs = $iregs + 1;
?>
};//of while datos
$more_pages = $row_noticia = mysql_fetch_array($ds_noticias);
while ($icol < ($icol_by_row+1)){ //completamos tds...
$icol = $icol + 1;
?>
|
};//of while completa tds
?>
|
|
};//of hay DATOS
?>
|
|


 |