View Single Post
  #3 (permalink)  
Old 06-10-2008, 08:42 PM
Whitey's Avatar   
Whitey Whitey is offline
Programming Professional
 
Join Date: Feb 2008
Location: Loveland, Colorado
Posts: 225
Credits: 0
Rep Power: 7
Whitey has a spectacular aura aboutWhitey has a spectacular aura aboutWhitey has a spectacular aura about
Send a message via AIM to Whitey Send a message via MSN to Whitey Send a message via Skype™ to Whitey
Default Re: How to start this?

someone gave me this code
PHP Code:
<?php
//Open images directory
$dir = @ dir("/images/icons/");

//List files in images directory
while (($file $dir->read()) !== false)
  {
 
$imagelist[$i] = array('filename' => $file 'lastModified ' => filemtime('images/icons/'.$file)); 
 
$i++;
  }
  
print_r($imagelist);

$dir->close();
?>
But it doesn't really seem to work. And i dont really understand it

P.S The upload has nothing to do with a database

Last edited by Whitey; 06-10-2008 at 09:02 PM.
Reply With Quote