2. Problem kenne ich nicht
3. Vielleicht hilft das:
To encode a '+' (plus) symbol so it ends up as '+' when decoded automatically by PHP, you have to do this:
rawurlencode(rawurlencode("+"));
If you just call rawurlencode() once, the resulting "%2B" is converted to '+' before '+' symbols are converted to spaces, which is not very useful.
rawurlencode(rawurlencode("+"));
If you just call rawurlencode() once, the resulting "%2B" is converted to '+' before '+' symbols are converted to spaces, which is not very useful.
Einen Kommentar schreiben: