When a user completes a page for registration, a script then checks for completion of required fields. Then, when the user returns/back to the registration page, all fields become blank.
Is there a way so that when the user goes back those fields completed remain on the page?
Thanks for your help.
use sub-sections of one page
e.g.:
if (page=="register") {
then do somthing
}
else {
ur HTML code watever
Your Name: <input type="text" value="<? $name ?>">
try it, it will work
Thanks Jose. I see how that should work, but, for some reason, it is not for me.
ok... after working on my problem, I found the problem I have is that track_vars is off. So, I added <? php_track_vars ?> to the second line of the code.
Thanks again.