Thanks MMJ. I have been doing some tutorials over PHP and mySQL and have been able to setup a database, a table, and interact with it in a few ways.
I have created a form, in which I want to send out to people to come to the website and register. The form works and updates the database; however, I would like to be a little more specific about my request.
Does anyone know how to query the database through a link so that they are only able to update information for that item. Even better would like to see it not be able to update again afterwards.
for instance, i would like to email out "please go to
http://domain.com/register.php?id=1 and have them enter information for ID 1. I would already enter their name, and could even have it display welcome "name", please fill out your information.
the site is not going to be popular, so i dont think i really have to worry about people going to the site as ?id=1 and then realizing they could probably go to id=2 and edit that information too, but i thought that maybe i could also include a field in the database called auth and put in some random digits so that the link would be like register.php?id=1&auth=A345DG which would update id=1 only if the auth is correct.
Please help if you can.
Thanks.
Jason