Help for this page

Select Code to Download


  1. or download this
    $string = $q->param("us1"); # this is what entered +book +dog +cat
    print join(',', $string), "\n";
    
  2. or download this
    # Output 
    "+book", "+dog", "+cat"