> -----Original Message----- > From: Justin Blake [mailto:[EMAIL PROTECTED]] > Sent: 16 April 2002 09:43 > > You can use variable variable names by adding another '$'. > so if $i == 1 and $var1 == "one", you can do this: > > $var_name = "var".$i; > if($$var_name == "one") echo "Hello!"; > > That should work,
So should: if (${"var".$i} == "one) echo "Hello!"; Cheers! Mike --------------------------------------------------------------------- Mike Ford, Electronic Information Services Adviser, Learning Support Services, Learning & Information Services, JG125, James Graham Building, Leeds Metropolitan University, Beckett Park, LEEDS, LS6 3QS, United Kingdom Email: [EMAIL PROTECTED] Tel: +44 113 283 2600 extn 4730 Fax: +44 113 283 3211 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php