well, im trying to make a script that will pull information from a website
so lets say the page i want to pull is
http://www.globeandmail.com/servlet/Art ... mp/4/4/25/
and i wanted to pull out
"Father files suit after son fails to win MVP award"
how would i go about doing that?
(i'm not trying to steal anything from this site, i'm just using it as an example...)
geting information from websites.
Moderator: General Moderators
-
penguinboy
- Forum Contributor
- Posts: 171
- Joined: Thu Nov 07, 2002 11:25 am
Code: Select all
$string = implode('',file('http://some.com');You can get what you need
Code: Select all
$string = implode('',file('http://some.com'));