If I for example have my url looking like index.php?category=IT%20&%20Soft. Then i try to print "$_GET[category]" i only get "IT" and not "IT & Soft". What is wrong here? It's frustrating me.
The problem is not the spaces, but the ampersand.
Use %26
instead, like this:
index.php?category=IT%20%26%20Soft
The ampersand indicates that you are beginning another field (like category=IT&subcategory=somethingelse
). You can see a list of reserved characters on Wikipedia.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With