Help for this page

Select Code to Download


  1. or download this
    $url = "http://www.flightcentre.com.au/static/SkiHolidays.xml";
    $data_string = get($url);
    $data_string =~ tr/‘’/'/;
    $data_string =~ tr/’/'/;
    $data_string =~ s/'''/'/g;
    
  2. or download this
    $file1 = "aafc.txt";
    
    open (FILE,">$file1");
        print FILE $data_string;
    close(FILE);