01-24-2008, 10:40 PM
|
#12 (permalink)
|
|
The Frequenter
Join Date: Apr 2005
Location: South UK
Posts: 483
Thanks: 51
|
ok, turned out not to be such a challange after all :D Sarmenhb wins the Cookie!
An alternative way (and the way I was thinking of when I wrote the question is to use variable variables :)
Eg:
PHP Code:
<?php
$badName = '999';
$$badName = 'Hello';
echo ${'999'};
Enjoy your cookie!
Alan
|
|
|