On one page I have a login which works and validates users based on my database.
What I want to be able to do is once it matches a user I want it to look at that users id code and then pass that as a url parameter to the next page which displays the users account details…
Does that make sense?
EDIT:
I have now changed the form to method=“Get”. However this passes ALL the fields from the form including the password field! What I want to do is just pass the username but nothing else, that way I can create a record set on the account page that filters on the username in the URL parameter.
So how do I stop it sending ALL the parameters?