Re: [PHP] Web fetching script

2001-08-27 Thread Ben Quinn
]; ? - Original Message - From: Dave [EMAIL PROTECTED] To: Ben Quinn [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, August 22, 2001 10:57 PM Subject: RE: [PHP] Web fetching script What response are you expecting, and what response are you getting? assuming your regex is working

Re: [PHP] Web fetching script

2001-08-27 Thread David Robley
On Mon, 27 Aug 2001 17:10, Ben Quinn wrote: G'day Guys Sorry, i should have explained it better. What i want to do is grab 2 different lots of text from the same page. Say the page had this text 10am Some text 12pm Different text 2pm I want to be able to grab from say 10am to 12pm

RE: [PHP] Web fetching script

2001-08-27 Thread Niklas Lampén
###; then use preg_match_all() to match everything between $GrabStart and $GrabStop. Hopefully this helped you out. -Original Message- From: Ben Quinn [mailto:[EMAIL PROTECTED]] Sent: 27. elokuuta 2001 10:41 To: Dave; [EMAIL PROTECTED] Subject: Re: [PHP] Web fetching script G'day Guys Sorry, i

Re: [PHP] Web fetching script

2001-08-27 Thread Ben Quinn
:58 PM Subject: Re: [PHP] Web fetching script On Mon, 27 Aug 2001 17:10, Ben Quinn wrote: G'day Guys Sorry, i should have explained it better. What i want to do is grab 2 different lots of text from the same page. Say the page had this text 10am Some text 12pm Different text

RE: [PHP] Web fetching script

2001-08-27 Thread Niklas Lampén
, August 27, 2001 5:58 PM Subject: Re: [PHP] Web fetching script On Mon, 27 Aug 2001 17:10, Ben Quinn wrote: G'day Guys Sorry, i should have explained it better. What i want to do is grab 2 different lots of text from the same page. Say the page had this text 10am Some text 12pm

RE: [PHP] Web fetching script

2001-08-22 Thread Dave
What response are you expecting, and what response are you getting? assuming your regex is working as expected, you are running it twice to receive the same result into 2 different variables??? why not just copy the variable after additionally, $printing is filled with the matches of your

Re: [PHP] Web fetching script

2001-08-22 Thread Andrey Hristov
Try this: http://www.php.net/manual/en/ref.curl.php - Original Message - From: Ben Quinn [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 22, 2001 2:35 PM Subject: [PHP] Web fetching script Hi all I have a web fetching script that fetches text from an external URL