I agree, and I'd like to know what is to be accomplished to see if there's a better workaround.
Just a random note-- to set a variably-named variable, use this:
$name = 'myvarname';
$$name = 'myvarvalue';
echo $myvarname;
//returns 'myvarvalue'
(The $$ must be used, not $some$thing, or you'll get errors.)



Reply With Quote



Bookmarks