Thread: array pointer?
View Single Post
Old 12-07-2003, 07:30 PM   #4 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,530
sde is on a distinguished road
seems like your kind of limited with pointers..

why not use something like this:
PHP Code:
<?
for ($i=0$i count($array); $i++)
{
  
$imageArray[$i];
}
?>
then $i is always your current position.. i'm not sure i understand fully what you're using the pointer for though.
__________________
Mike
sde is offline   Reply With Quote