View Single Post
  #3  
Old 10-17-2009, 10:11 PM
Valdaun
Fire Beetle
 
Join Date: Oct 2009
Posts: 28
Default

Sorry, I guess I wasn't totally clear. I need a way to have perl tell me how many entries are in my $turnins array I create at the beginning. That way I don't need to manually create another variable for that number myself. (4 in this case, since I have 4 item + reward entries in my example array) In PHP I could use the count() function to do this:

Code:
$max_turnins = count($turnins);
$itemcount is something else, and you can see I do use that too.

Thanks though
Reply With Quote