Hello, on my registration form if thier is an error in a feild that is required that doesnt get completed it outputs a error like it's suppose to. The problem I am having is it resets the entire form and the visitor has to start all over. Is thier something I can do to where it will keep the completed feilds and only leave the feild that was not completed or had errors blank so the visitor doesn't have to fill the entire form out again?
-Thanks.
Hi Dada,
You can use the "value" tag of the formelements, and spit out the values he has sumbitted when reloading.
e.g.,
<input type="text" value="<? echo $_POST[name];?>" name="name">
Ah good idea thanks, I can't believe I didn't think of that. Actually since you mentioned that it looked familiar. It was in my book that I overlooked and didnt't read that part about using echos in forms...LoL
-Thanks again.