View Single Post
  #6 (permalink)  
Old May 21st, 2007, 10:21 AM
php_Newbie php_Newbie is offline
Registered User
 
Join Date: May 2007
Location: , , .
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi gcorcuera
I think u can generate variable names using a perl-like notation like below:
for ($i to N)
${"var".$i};

This will generate var1, var2 ..... varN, which u can assign values to.

Hope this helps :)



Reply With Quote