in reply to Using Variables with Variables

This particular instance calls for arrays, like the others have said. However, for reference, you can do what you were trying to do like this:
${ 'radio_' . $ucount } = param( "radio_$ucount" ); ${ "textarea$ucount" } = param( 'textarea' . $ucount );

Note that

Replies are listed 'Best First'.
Re^2: Using Variables with Variables
by Joost (Canon) on Apr 02, 2007 at 15:56 UTC