RE: [PHP] today i found the best function I've ever seen

2009-03-23 Thread abdulazeez alugo
> Date: Mon, 23 Mar 2009 09:11:00 -0400 > From: danbr...@php.net > To: titiolin...@gmail.com > CC: virgilio.quila...@gmail.com; nrix...@gmail.com; php-general@lists.php.net > Subject: Re: [PHP] today i found the best function I've ever seen > > On Mon, Mar 23, 2

Re: [PHP] today i found the best function I've ever seen

2009-03-23 Thread Nathan Rixham
Jason Pruim wrote: Daniel Brown wrote: On Mon, Mar 23, 2009 at 09:07, Igor Escobar wrote: Do not try this at home... Sorry, all, I must have yelled. Two days later and my words are still echoing. ;-P Yeah... Would you keep your voice down You self titled oh so important per

Re: [PHP] today i found the best function I've ever seen

2009-03-23 Thread Jason Pruim
Daniel Brown wrote: On Mon, Mar 23, 2009 at 09:07, Igor Escobar wrote: Do not try this at home... Sorry, all, I must have yelled. Two days later and my words are still echoing. ;-P Yeah... Would you keep your voice down You self titled oh so important person! :P -- PHP

Re: [PHP] today i found the best function I've ever seen

2009-03-23 Thread Daniel Brown
On Mon, Mar 23, 2009 at 09:07, Igor Escobar wrote: > Do not try this at home... Sorry, all, I must have yelled. Two days later and my words are still echoing. ;-P -- daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/ || http://www.pilotpig.net/ 50% Off All Shared Host

Re: [PHP] today i found the best function I've ever seen

2009-03-23 Thread Igor Escobar
Do not try this at home... Igor Escobar systems analyst & interface designer www . igorescobar . com On Sat, Mar 21, 2009 at 7:23 AM, Virgilio Quilario < virgilio.quila...@gmail.com> wrote: > > if( !function_exists('clean_sql_term') ) > > { > >function clean_sql_term($term) { > >r

Re: [PHP] today i found the best function I've ever seen

2009-03-21 Thread Virgilio Quilario
> if( !function_exists('clean_sql_term') ) > { >    function clean_sql_term($term) { >        return $term; >    } > } > > beautiful > hi Nathan, Nice find. You have found a very useful function. Here is how I use it to load needed PHP files that declares the function. if (!function_exists('clean

Re: [PHP] today i found the best function I've ever seen

2009-03-20 Thread Daniel Brown
On Fri, Mar 20, 2009 at 19:43, Nathan Rixham wrote: > if( !function_exists('clean_sql_term') ) > { >    function clean_sql_term($term) { >        return $term; >    } > } DISCLAIMER: Nathan is being facetious. This is just one of several bits of a mess we took to fix in a project. Do not tr

[PHP] today i found the best function I've ever seen

2009-03-20 Thread Nathan Rixham
if( !function_exists('clean_sql_term') ) { function clean_sql_term($term) { return $term; } } beautiful -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php