How do i get the special characters from a form submit.
For example: a form got a name="customer[firstname]".
The url will be customer%5Bfirstname%5D=Test.
i've tried:
$firstName = $_GET['customer[firstname]'];
also the same with urldecode, rawurldecode.