Is there a way the refrence a varible by using a varible in the name...
for example
$foo1 = dave; $foo2 = Dave; $foo3 = DAVE;
$i=1;
while ($i<4) { print $foo$i; $i++; }
Thanks, Dave Bower
http://www.php.net/manual/en/language.variables.variable.php
The manual is the best place to learn.
Nick