hello i am working on codeigniter an iam getting problem that when anyone go to edit name that was entered as "XYZ ABC" means providing space between them then we get "%20" as printed between them when it is printed on textfield to be edited
Asked
Active
Viewed 97 times
0
-
Show us at least a reduced code with your HTML and PHP – Marcio Mazzucato Jul 02 '12 at 06:28
2 Answers
0
Sounds like the user input get url_encoded somwhere, as %20
is an urlencoded whitespace.
Try decoding it before displaying/writing to DB:

gherkins
- 14,603
- 6
- 44
- 70