$value = trim(EscapeShellCmd($fieldName));
and then i do a $query= "insert into table set name='$value'"; i swear i did not add any slashes twice (at least for what i know!!).. is there another way that i could have addslashes twice without my knowing??
Heh... look at the output of
echo EscapeShellCmd("it's not okay");
Why do you even use EscapeShellCmd? That's the whole purpose of magic_quotes_gpc... to escape quotes that'll cause you trouble.
-- ---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
php|architect: The Magazine for PHP Professionals – www.phparch.com
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php