Help for this page

Select Code to Download


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