Help for this page

Select Code to Download


  1. or download this
    0001:97 Ford Mustang:Red:46000:9990.00
    0002:99 Chevy Blazer:Black:19000:17000.00
    
  2. or download this
    @car_data = `cat data.file`;
    foreach (@car_data) {
    ...
        @temp_data = split(/:/,$_); # split the current line by semi-colin
    + into the array @temp_data
        print "<a href="http://yoursite/$car_data[0].html">$car_data[1]</a
    +>\n"; # prints the link
        }