Forum Moderators: coopster
The problem I think is that php is treating the '+' as a space, what you would get if in php you used the urlencode(string) function, in which spaces are changed into +.
in php:
<?php
$test=urlencode('this is+webmasterworld');
echo $test;
?>
puts out:
this+is%2Bwebmasterworld
so maybe you might try putting in %2B instead of + in the javascript side, then use urldecode() in php to get back to the +, if that's what you are trying to do, it's not completely clear to me though.