Search found 1 match

by cumitham
Sat Dec 18, 2010 11:00 am
Forum: Shopping Cart (ALL)
Topic: [SEO] MakeURLSafe and the '/' character
Replies: 14
Views: 99095

Re: [SEO] MakeURLSafe and the '/' character

Thank you!!! to complete this hack for spanish users who wants to add characters like:

á, é, í, ó, ú and ñ

function MakeURLSafe($val)
{
$val = str_replace("-", "%2d", $val);
$val = str_replace("+", "%2b", $val);
$val = str_replace("+", "%2b", $val);
$val = str_replace("/", "%2f", $val ...