| 
	
 | 
 Posted by Optonline on 09/05/05 17:18 
I'm looking to get the baseball score between the html tags on yahoo and 
create my own rows with just the data. 
 
So far I have this code 
----------------------------------------------------------- 
$data = file_get_contents('http://sports.yahoo.com/'); 
list(, $data_split) = explode('<td width="50%" class="yspscores">', $data, 
2); 
list($data2, ) = explode('</a></td>', $data_split, 2); 
$data2 = strip_tags($data2); 
echo $data2; 
------------------------------------------------------- 
 
It gives me all the results but I want to do a loop that will find the first 
row of scores create a new row and put the data in the new row then find the 
next row of scores create another new row and insert the data and continue 
that pattern to the end. 
 
Thanks
 
  
Navigation:
[Reply to this message] 
 |