Help for this page

Select Code to Download


  1. or download this
    my @allquestions;
    if ($type =~ m/q/i) {    # ** CHECKS FOR QUESTION LINE & PRINTS QUESTI
    +ON
       print "<B>$value</B><BR>";
       @allquestions = (@allquestions, $value);
    }
    
  2. or download this
       @allquestions = (@allquestions, $value);
    # Should be ...
       push @allquestions, $value;