Basically, I have an input form that looks like this:
- Code: Select all
<input name="zip" type="text" class="form-text-box" value="" />
The developer's code strips out quotes and these ">" "<".
I tried using unicode encoding and even double encoding, but it's just interpreted as strings.
Something like: %u0022 or %25u0022 (I think those are right).
Anything else I can try? I just want to get to know various techniques.