Hello!
I have been having a tough time with this for about a week now and can't get this to work correctly.
Here's what I want to accomplish:
A user wants to access his/her preferences. To do this, they must use their unique URL. Instead, i want a page that has a text input for their email. After competing their email address, i want the form to redirect the page to http://pagename/uid={there email address here}
Here is what i currently have:
<form action="<?php print $PHP_SELF?>">
<input type="text" name="email">
<input type='submit' value=' submit '
onSubmit='location="http://www.rushhourdirect.com/lists/?p=preferences&uid=<?php print $email ?>";'>
</form>
The problem with this is, it adds "email={inputted infor]" instead of: the entire new url to redirect to with the $email variable at the end of it.
Thanks For The Help!
Jeff