Warning: strtotime() [function.strtotime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EDT/-4.0/DST' instead in /home/question/public_html/scripts.php on line 1574
Warning: strtotime() [function.strtotime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EDT/-4.0/DST' instead in /home/question/public_html/scripts.php on line 1574
Q: Using PHP to Pull Content from other sites?
Submitted By: Weston, 355 days, , 18 minutes ago
How cam I use PHP to pull content from other sites? An example of a site doing just that is The Torrent Jabberwalker http://jabberwalker.com.ar/ which allows you to search many torrent sites at once and then show the results on the same page.
I would very much appreciate it if someone could help me with this!
MSN: avenger@messengeruser.com
I would very much appreciate it if someone could help me with this!
MSN: avenger@messengeruser.com
Please try not to post duplicate answers... if you see an answer that you want to post, just add a vote to it and you can add a note as well. Thank You
1
0
quick tips
Submitted By: Raptor235 ( 354 days, 16 hours, 4 minutes ago )
Basically you'll need to know php... and write a parser... what's involved is
reading a webpage to a file or memory
and then scanning it and identifing certain places where you want to grab information...
than you take that information and dump in a db or another file... it's pretty tedious work
you should look for webpage parsers there are programs that do it for you but it would be really hard to find one that does it prefectly across different pages because of different data layout...
reading a webpage to a file or memory
and then scanning it and identifing certain places where you want to grab information...
than you take that information and dump in a db or another file... it's pretty tedious work
you should look for webpage parsers there are programs that do it for you but it would be really hard to find one that does it prefectly across different pages because of different data layout...