Help for this page

Select Code to Download


  1. or download this
    my $query = "SELECT abc def ghi jkl .....";
    ... set up database stuff ...
    ($abc, $def, $ghi, $jkl ...) = @array;
    
  2. or download this
    map {$_='$'.$_} (@var_list=@col_list)
    join (",",@var_list);
    (eval "$var_list") = @array;