Topic awaiting preservation: get data from external site |
|
---|---|
Author | Thread |
Obsessive-Compulsive (I) Inmate From: Kitzingen, Germany |
posted 02-02-2002 10:45
I need to extract info from this game site for my personal site: http://my.uo.com/cgi-bin/guilds.pl?g=f68cc067f7061ebe:4 |
Paranoid (IV) Inmate From: 127.0.0.1 |
posted 02-02-2002 17:08
I wonder if you could some sort of web fetching for that. Check out hotscripts for some possible ideas. |
Maniac (V) Inmate From: Brisbane, Australia |
posted 02-03-2002 00:17
You could use PHP to read the whole page into a variabul. Then regex the hell out of it untill you have what you need. |
Maniac (V) Mad Scientist From: New California |
posted 02-03-2002 04:23 |
Maniac (V) Mad Scientist From: Belgrade, Serbia |
posted 02-03-2002 08:19 |
Obsessive-Compulsive (I) Inmate From: Kitzingen, Germany |
posted 02-03-2002 09:27
nice to see you all agree....so it's PHP (a script?), then standard HTML to strip it down? I'm only a hair beyond doing cheezy auto-build sites from hosting companies, so there may be more questions to follow..... |
Paranoid (IV) Inmate From: Lebanon |
posted 02-04-2002 14:42
qaddamage, code: $mem = join('', file('http://my.uo.com/cgi-bin/guilds.pl?g=f68cc067f7061ebe:4'));
|
Obsessive-Compulsive (I) Inmate From: Kitzingen, Germany |
posted 02-04-2002 21:49
that's outstanding! I wouldn't have been able to pick that one apart on my own, thanks for taking the time to analyze the code on that site to figure out what I needed |