I have a URL string like https://example.com/path/?welcome_screen=1&email_address=something+else@example.com
In PHP, I call <?php echo $_GET['email_address']; ?>
Which produces something else@example.com
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?