[PHP] HTML 2 TEXT

2002-09-20 Thread Tim Haynes
Does anybody know of a class or a solution to converting an HTML page to a text only page via PHP, but leaving in href links in and a certain degree of formatting. Cheers, Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] HTML 2 TEXT

2002-09-20 Thread SiTA WebMaster - VST
Try to remove all strings starting with and ending with . Be sure not to remove A href ... /A's. Also you need to format line endings via \n or BR. it might seem a little bit hard, but any other solution won't work rather than this. Tim Haynes wrote: Does anybody know of a class or a

Re: [PHP] HTML 2 TEXT

2002-09-20 Thread Justin French
There's a perfect example in the manual: http://www.php.net/manual/en/function.preg-replace.php HTH Justin on 20/09/02 9:16 PM, SiTA WebMaster - VST ([EMAIL PROTECTED]) wrote: Try to remove all strings starting with and ending with . Be sure not to remove A href ... /A's. Also you need to

Re: [PHP] HTML 2 TEXT

2002-09-20 Thread nicos
strip_tags() is the easiest way to remove HTML tags. If he wants to replace them, then he can use ereg_replace or preg_replace(). -- Nicos - CHAILLAN Nicolas [EMAIL PROTECTED] www.WorldAKT.com - Hébergement de sites Internet Justin French [EMAIL PROTECTED] a écrit dans le message de news:

Re: [PHP] HTML 2 TEXT

2002-09-20 Thread Sascha Cunz
what he really needs is to completely remove script.../script, plus many many other examples. completely removing everything outside the body would be another option, perhaps saving the contents of title.../title since a script might also occur inside the body, this would not really work