- or download this
${ 'radio_' . $ucount } = param( "radio_$ucount" );
${ "textarea$ucount" } = param( 'textarea' . $ucount );
- or download this
print "something$ucount"; # prints 'something1'
print 'something$ucount'; # prints 'something$ucount'
- or download this
$x = "something$ucountElse";
# probably tries to interpolate a variable called
# $ucountElse, ambiguous
$x = "something" . $ucount . "Else"; # Unambiguous
- or download this
$x = "something${ucount}Else";