atom feed3 messages in net.php.lists.php-generalRe: [PHP] Array Question
FromSent OnAttachments
Phillip S. BakerJul 18, 2000 9:38 am 
Matt McClanahanJul 18, 2000 9:58 am 
Jon PariseJul 18, 2000 9:59 am 
Subject:Re: [PHP] Array Question
From:Jon Parise (jo@csh.rit.edu)
Date:Jul 18, 2000 9:59:34 am
List:net.php.lists.php-general

On Tue, Jul 18, 2000 at 09:38:28AM -0700, Phillip S. Baker wrote:

Okay I want to populate an array with a variable (i think that is the way to state it)

Ok ay I am using this code

$d = dir("images/"); while($entry=$d->read()) { if(($entry==".") OR ($entry=="..")) { echo ""; } else {

$images[] = $entry;

} } $d->close();