Hi All,
I am processing a form that includes address info. If the user fills out the form and (address2) has an apartment number that they enter like:
#1522
I have trouble later where I might contruct a link such as:
header("location: contact.php?address1=$address1&address2=$address2&city=$city&state=$state");
The link creates fine, but processing on the otherside where I am trying to get the data back stops after encountering the # sysmbol. The code I have to get the data from the link is:
if(isset($_GET["address2"])) $address2 = $_GET["address2"]; else $address2 = "";
The address2 field is empty as are all the fields that come after it in the process. Any ideas what to do to allow the # symbol?
Thanks.