Ver Mensaje Individual
  #20 (permalink)  
Antiguo 28/05/2010, 14:01
Avatar de wiwi74
wiwi74
 
Fecha de Ingreso: marzo-2008
Mensajes: 515
Antigüedad: 16 años, 1 mes
Puntos: 10
Respuesta: Mostrar Imágenes

Ya esta entonces:

Código PHP:


<?php


$ruta 
"/home/jota/Escritorio/123/"// Indicar ruta 
$files=scandir($ruta); 
/* 
echo "<pre>"; 
var_dump($files); 
echo "</pre>"; 
*/ 

foreach($files as $img){ 
if(
$img != "." && $img != ".." && $img != "Thumbs.db"){ 
echo 
"<br /><img src='/home/jota/Escritorio/123/".$img."' />"




?>

Última edición por wiwi74; 28/05/2010 a las 14:23