Re: [PHP] detecting HTML tags

2001-05-15 Thread mark
bill <[EMAIL PROTECTED]> wrote: > > Is there a way to detect the presence of HTML tags? > > I don't want them stripped out, I just want to know if a string contains > them. > > I'm rolling my own mailing program and want it to detect the HTML if > present and send it appropriately. > > kind re

Re: [PHP] detecting HTML tags

2001-05-15 Thread Christian Reiniger
On Tuesday 15 May 2001 18:25, Jack Dempsey wrote: > $text = " 50 < 100 + 240"; > not html... > > would want regex's i would think, or the striptags version someone > sent before... Well, then preg_match ('/<[a-z]/i', $text) should work. > > > Is there a way to detect the presence of HTML tags?

Re: [PHP] detecting HTML tags

2001-05-15 Thread bill
Yes, I thought similarly. But so far, neither works. $string="blah x<4 blah"; if (strlen($string) != strlen(strip_tags($string))){ echo "html"; } else { echo "text"; } The above still echos "html". kind regards, bill Jack Dempsey wrote: > $text = " 50 < 100 + 240"; > not html... > > wo

Re: [PHP] detecting HTML tags

2001-05-15 Thread James Holloway
Hi Bill ]{1,})*([\>])/i", $string)) { echo "Houston, we have a problem."; } ?> James. "bill" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Is there a way to detect the presence of HTML tags? > > I don't want them stripped out, I just want to know if a

Re: [PHP] detecting HTML tags

2001-05-15 Thread Jack Dempsey
$text = " 50 < 100 + 240"; not html... would want regex's i would think, or the striptags version someone sent before... -jack Christian Reiniger wrote: > > On Tuesday 15 May 2001 16:39, bill wrote: > > Is there a way to detect the presence of HTML tags? > > > > I don't want them stripped out

Re: [PHP] detecting HTML tags

2001-05-15 Thread Christian Reiniger
On Tuesday 15 May 2001 16:39, bill wrote: > Is there a way to detect the presence of HTML tags? > > I don't want them stripped out, I just want to know if a string > contains them. > > I'm rolling my own mailing program and want it to detect the HTML if > present and send it appropriately. if (st

RE: [PHP] detecting HTML tags

2001-05-15 Thread Taylor, Stewart
You could try something like if (strlen($string) != strlen(strip_tags($string)) { // maybe some html in string } -Stewart -Original Message- From: bill [mailto:[EMAIL PROTECTED]] Sent: 15 May 2001 15:40 To: [EMAIL PROTECTED] Subject: [PHP] detecting HTML tags Is there a way to

RE: [PHP] detecting HTML tags

2001-05-15 Thread Altunergil, Oktay
Look into regular expressions. -Original Message- From: bill [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 15, 2001 10:40 AM To: [EMAIL PROTECTED] Subject: [PHP] detecting HTML tags Is there a way to detect the presence of HTML tags? I don't want them stripped out, I just want to

[PHP] detecting HTML tags

2001-05-15 Thread bill
Is there a way to detect the presence of HTML tags? I don't want them stripped out, I just want to know if a string contains them. I'm rolling my own mailing program and want it to detect the HTML if present and send it appropriately. kind regards, bill hollett -- PHP General Mailing List (