// Pintada del catalogo seleccionado
$i=0;
$intCount = 0;
// variable que inicializa el thumbnails
$intSize = 100;
// fin variable que inicializa el thumbnails
if ( $intPlus > 0 ){
$i = $intPlus;
}
else{
$i = 0;
}
// leer los subdirectorios
$intTop = $i + $intSize;
$ruta1="publicidad/";
$handle=opendir($ruta1);
while ($file = readdir($handle)) {
if ($file != "." && $file != ".." && $file !="_notes" && $file!="_notes" && $file!="index.php3" && $file!="sello03.gif" && $file!="indexold.php3" && $file!="images" && $file!="contenido.php" && $file!="top.php"&& $file!="cabezote.jpg"&& $file!="creditos.jpg"&& $file!="directorio.jpg") {
if( $intCount >= $i && $intCount < $intTop ) {
$atras.=$file."|";
?>
$veratras=1;
}
$intCount++;
}
}
closedir($handle);
?> |