all my problems so far I resolved by serching this forum, but now I reched to a wall.. :) mayby the problem is I'm don't know what question to ask..
So my problem is: I have submiting form in witch user put tracking list number - and for some cases this number starts with "%000xxxx" character. Using JS, and AJAX I make post to PHP endpoint. So fare, everything is ok, in console.log(data) I'm geting url:
endppoint/trackingNumber=%000xxxx&foo=bar
The problem starts in php (it's my guess) In POST details, in request I have somthing like this:
trackingNumber: \u000xxx
foo: bar
and when I'm printing in PHP controler - I get:
" 0xxx"
PHP - is old one, 5.3.3
Done:
iconv('UTF-8', 'ISO-8859-1',$data);
I'd like to be able to post via PHP full tracking number (with %000 instead of " 0") and understand that isue.