Voting

: max(zero, five)?
(Example: nine)

The Note You're Voting On

daniel+php at danielnorton dot com
16 years ago
Don't use urlencode() or urldecode() if the text includes an email address, as it destroys the "+" character, a perfectly valid email address character.

Unless you're certain that you won't be encoding email addresses AND you need the readability provided by the non-standard "+" usage, instead always use use rawurlencode() or rawurldecode().

<< Back to user notes page

To Top