Help for this page

Select Code to Download


  1. or download this
      print DATAFILEOUT "$company_name|$time|$email|$member1|$member1phone
    +|$data|$expiretime|$pictureurl|$password|$website|$member2|$member2ph
    +one|$address|$citystatezip|$fax|$catlisting\n";
    
  2. or download this
    print DATAFILEOUT @temp;
    
  3. or download this
    for (1 .. $#temp) {
       print DATAFILEOUT $temp[$_];
    }
    
  4. or download this
    my $temp_length = @temp;
    for my $current_array_index ( 1 .. ($temp_length - 1) ){
      print DATAFILEOUT $temp[$current_array_index];
    }