Re: [PHP] strip_tags

2013-07-20 Thread Tedd Sperling
On Jul 20, 2013, at 5:34 PM, Frank Arensmeier wrote: > 20 jul 2013 kl. 18:25 skrev Tedd Sperling : > >> Hi gang: >> >> I've been using >> >> $str = strip_tags($str, $allowable) >> >> as it is described via the manuals: >> >> http://php.net/manual/en/function.strip-tags.php >> >> The prob

Re: [PHP] strip_tags

2013-07-20 Thread Frank Arensmeier
20 jul 2013 kl. 18:25 skrev Tedd Sperling : > Hi gang: > > I've been using > >$str = strip_tags($str, $allowable) > > as it is described via the manuals: > > http://php.net/manual/en/function.strip-tags.php > > The problem I've found is the tags "" and "" are not stripped. > > How do you

[PHP] Re: query order issue

2013-07-20 Thread Jim Giner
On 7/20/2013 12:21 PM, dealTek wrote: Hi all, I have a page that starts with several mysql sql query searches and displays data below... then I added a form (with hidden line "do-update" value "UPDATE") on the same page with action to same page... then above other sql queries - I put... i

[PHP] Re: query order issue

2013-07-20 Thread Jim Giner
On 7/20/2013 12:21 PM, dealTek wrote: Hi all, I have a page that starts with several mysql sql query searches and displays data below... then I added a form (with hidden line "do-update" value "UPDATE") on the same page with action to same page... then above other sql queries - I put... i

[PHP] strip_tags

2013-07-20 Thread Tedd Sperling
Hi gang: I've been using $str = strip_tags($str, $allowable) as it is described via the manuals: http://php.net/manual/en/function.strip-tags.php The problem I've found is the tags "" and "" are not stripped. How do you strip all tags, but leave some tags (such as , , and -- I know thes

[PHP] query order issue

2013-07-20 Thread dealTek
Hi all, I have a page that starts with several mysql sql query searches and displays data below... then I added a form (with hidden line "do-update" value "UPDATE") on the same page with action to same page... then above other sql queries - I put... if ((isset($_POST["do-update"])) && ($_PO