Here's the issue,
I have a user fill out a form, one field is called "Title" and will likely have spaces.
I take the users inputs and generate a concatenated link to prefill out another form.
I'd like the spaces to be respected in that second form Title field, the one that get's the variables passed to it. Right now I have it set up like this (simplified fields)...
Form 1
Name
Title
I use the notification e-mail to generate a link like this for Form 2
http://URL OF FORM 2 THAT I'VE SET PARAMETERS UP ON/?name={MERGE TAG FOR NAME}&title={MERGE TAG FOR TITLE}
...but the merge tag for the title will have spaces, which will get stripped out or cause an issue if someone actually uses that link, how can I account for or fix that?
-r