sebcio_pxl - 2006-07-19

Logged In: YES
user_id=1550693

problem solved

before passing variable to x_callmyajax do something like
this to preserve the + characters:

a = encodeURIComponent(a);

then, in php, you can easly restore original string by

$a = rawurldecode($a);

nice url with infos:
http://xkr.us/articles/javascript/encode-compare/

best regards,
sebastian