$source = "http://www.meteofa.mil.ar/dpd/tiepre/87582.htm"; $start = "title_area value=\""; //This just tells the script where to begin to get the data in the page. $end = "\" size=26 border=0>"; //This just tells the script where to end recording the data. //Content Retrieval $data = fopen("$source", "r"); $get = fread($data, 20000); $take = eregi("$start(.*)$end", $get, $content); $info = str_replace("--", " - ", $content); echo $info[1];