Help for this page

Select Code to Download


  1. or download this
    # isnt actual code but displays idea
    my $f = $array[$i] || 0;
    $sql .= '"$f", ';
    
  2. or download this
    $sql .= join('", "', @array) . '");';