Re: [PHP] Retrieving text from a URL using PHP

2002-06-06 Thread Anthony Ritter
Thanks Miguel! TR -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Retrieving text from a URL using PHP

2002-06-06 Thread Miguel Cruz
echo strip_tags($contents); miguel On Thu, 6 Jun 2002, Anthony Ritter wrote: > I'm still trying to figure out how to implement the strip_tags() function on > the script below so that the output of the URL is straight text. > > Please advise if you get a chance. > > TR > ...

Re: [PHP] Retrieving text from a URL using PHP

2002-06-06 Thread Anthony Ritter
Thank you Jason. I'm still trying to figure out how to implement the strip_tags() function on the script below so that the output of the URL is straight text. Please advise if you get a chance. TR . Retrieving text from a URL http://www.blah.

RE: [PHP] Retrieving text from a URL using PHP

2002-06-06 Thread Leotta, Natalie (NCI/IMS)
I wish I'd seen this before I sent my message! -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 10:46 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Retrieving text from a URL using PHP On Thursday 06 June 2002 23:43, Anthony Ritter wrote:

RE: [PHP] Retrieving text from a URL using PHP

2002-06-06 Thread Leotta, Natalie (NCI/IMS)
ent: Thursday, June 06, 2002 11:44 AM To: [EMAIL PROTECTED] Subject: [PHP] Retrieving text from a URL using PHP Is there any way to retrieve data (for example - the text *within* a table) from another URL so that only the text appears and not the html (tables, cells, colors, etc.) Below is a script

Re: [PHP] Retrieving text from a URL using PHP

2002-06-06 Thread Jason Wong
On Thursday 06 June 2002 23:43, Anthony Ritter wrote: > Is there any way to retrieve data (for example - the text *within* a table) > from another URL so that only the text appears and not the html (tables, > cells, colors, etc.) strip_tags() -- Jason Wong -> Gremlins Associates -> www.gremlins

[PHP] Retrieving text from a URL using PHP

2002-06-06 Thread Anthony Ritter
Is there any way to retrieve data (for example - the text *within* a table) from another URL so that only the text appears and not the html (tables, cells, colors, etc.) Below is a script which opens and reads a URL and then outputs the complete URL. I am just looking for the text output. Thank