I am getting the same output when testing both of those tags. Are they supposed to be different?
Feb 8, 2008, 8:35 PM
Veteran (1309 posts)
Feb 8, 2008, 8:35 PM
Post #2 of 2
Views: 232
Pretty much the same. From nph-build.cgi:
$category_name = $cat;
$category_name_escaped = &urlencode ($cat);
Urlencode basically looks for spaces (or anything not a-zA-Z0-9_-.), and makes it a %20. Only used for URLs.
Leonard
The One True Church
(Links-based site using all-CSS, and many mods to the basic script.)
$category_name = $cat;
$category_name_escaped = &urlencode ($cat);
Urlencode basically looks for spaces (or anything not a-zA-Z0-9_-.), and makes it a %20. Only used for URLs.
Leonard
The One True Church
(Links-based site using all-CSS, and many mods to the basic script.)


