I have a URL string like https://example.com/path/?welcome_screen=1&[email protected]
In PHP, I call <?php echo $_GET['email_address']; ?>
Which produces something [email protected]
Specifically, a space instead of the + in the email address.
- Is this expected?
- If so, is there a way to prevent this from happening in the
echo
code above? - Or should it be handled when collecting the email address somehow?