|
Posted by Optonline on 09/05/05 19:12
I forgot to mention my host is using PHP 4.3.10
Thanks
"Optonline" <someone@aol.com> wrote in message
news:6bRSe.45486$KX7.16499@fe10.lga...
> 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
>
[Back to original message]
|