[PHP] Re: Form Data Filtering

2007-06-15 Thread Chris
kvigor [EMAIL PROTECTED] schrieb im Newsbeitrag news:[EMAIL PROTECTED] Hello, I 'm checking form data for profanity but it only works if the $_POST['var'] is lowercase I was wondering if anyone knew how I could catch the profanity no matter what case it was. No matter if it was BAD or

[PHP] Re: Form Data Filtering

2007-06-15 Thread Darren Whitlen
kvigor wrote: Hello, I 'm checking form data for profanity but it only works if the $_POST['var'] is lowercase I was wondering if anyone knew how I could catch the profanity no matter what case it was. No matter if it was BAD or bad or mixed like BaD? Instead of the long way: if ($value

Re: [PHP] Re: Form Data Filtering

2007-06-15 Thread Daniel Brown
On 6/15/07, Chris [EMAIL PROTECTED] wrote: kvigor [EMAIL PROTECTED] schrieb im Newsbeitrag news:[EMAIL PROTECTED] Hello, I 'm checking form data for profanity but it only works if the $_POST['var'] is lowercase I was wondering if anyone knew how I could catch the profanity no matter what

Re: [PHP] Re: Form Data Filtering

2007-06-15 Thread Dave Goodchild
I use something like this: $_SESSION['profane'] = false; foreach ($_POST as $value) { foreach ($swearbox as $profanity) { if (preg_match(/$profanity/i, $value)) { $errors = true; $_SESSION['profane'] = true; mail(TECHEMAIL, 'profane content

Re: [PHP] Re: Form Data Filtering

2007-06-15 Thread Richard Heyes
Have you tried eregi()? You don't need the regex functions, they're slow and you should be using PCRE instead (IMO). -- Richard Heyes 0844 801 1072 http://www.websupportsolutions.co.uk Knowledge Base and HelpDesk software -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Re: Form Data Filtering

2007-06-15 Thread Zoltán Németh
2007. 06. 15, péntek keltezéssel 15.48-kor Dave Goodchild ezt írta: I use something like this: $_SESSION['profane'] = false; foreach ($_POST as $value) { foreach ($swearbox as $profanity) { if (preg_match(/$profanity/i, $value)) { $errors = true;

Re: [PHP] Re: Form Data Filtering

2007-06-15 Thread Andrei
Man you have some issues... :p Dave Goodchild wrote: No, because extra processing is done on the other side - now

Re: [PHP] Re: Form Data Filtering

2007-06-15 Thread Dave Goodchild
No, because extra processing is done on the other side - now

[PHP] Re: Form Data Transfer b/w Pages

2004-04-21 Thread Craig
For ease of use, i would create a session and handle it that way or you could pass it through $_GET[] Query string. Would recommend $_SESSION though. Cheers Sobajo [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Two forms (form1 and form2 submit to the same controller.php file. The

Re: [PHP] Re: Form Data Transfer b/w Pages

2004-04-21 Thread Daniel Clark
I agree. $_GET[] would expose the username and password on the URL. For ease of use, i would create a session and handle it that way or you could pass it through $_GET[] Query string. Would recommend $_SESSION though. Cheers Sobajo [EMAIL PROTECTED] wrote in message news:[EMAIL

[PHP] Re: Form Data

2001-07-30 Thread elias
maybe the field is too small to hold the whole value? some code might also help. Gerard Samuel [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hey all. Another thought. In a form I have there is a drop down box with age groups. ie 20-25 26-35 etc. If I

[PHP] Re: Form Data

2001-07-30 Thread Adam
maybe your field is set to INT -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]