View Single Post
  #5 (permalink)  
Old 06-22-03, 04:54 AM
ChristGuy ChristGuy is offline
Operations Support Develo
 
Join Date: Jun 2003
Location: Rivonia, South Africa
Posts: 111
Thanks: 0
Thanked 0 Times in 0 Posts
You could try something like the following:
PHP Code:

$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($data20000);
$take eregi("$start(.*)$end"$get$content);
$info str_replace("--"" - "$content);
echo 
$info[1]; 
taken from:
http://forums.hotscripts.com/showthr...=&threadid=427
__________________
Till We Meet Again...
Clifford W. Hansen
Aspivia (Pty) Ltd

"We Have Seen Strange Things Today!" Luke 5:26
Reply With Quote