Forum Moderators: coopster
i have a strange situation, ffter form POST my "\t" becomes "space".
For example, i have input with data: "1\tA" and after posting a form and printing out POST array i can see that this field data becomes "1 A" not "1\tA"...
I checked with rawurlencode to be sure.
"1\tA" is "1%09A" after POST "1%20A"
I cant really get this, why "\t" becomes "space" after form post...
Im making request (post) with mootools Request method.
There is a field <input ... value="1 A" /> i changed form method to GET and i can see "field_name=1%09A", but when i try to print out echo $_GET['field_name'], i get "1 A" or urlencode($_GET['field_name']) "1%20A"...
OMG its such a headache, i dont know where to turn...