Topic awaiting preservation: back button & form Field |
|
---|---|
Author | Thread |
Nervous Wreck (II) Inmate From: |
posted 11-07-2003 19:26
how can i give a link to the back button as it loads the previous page intact?and i want to know also how can i give initial value in a form field? it's like after cheacking if the email address already exists it will load the page again i have done this using php...but problem is all form Fiels are flushed...i want to overcome so that all fields do not Flush.Any help? |
Maniac (V) Inmate From: Den Haag: The Royal Residence |
posted 11-10-2003 23:30
What?? |
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 11-10-2003 23:44
shalvi: OK a number of questions there an it might help if you rephrase them a bit as I doubt Rinswind is the only one struggling. I'll have a go though: code: header ("Cache_Control: no_cache, must_revalidate");
|
Nervous Wreck (II) Inmate From: |
posted 11-11-2003 15:42
Emperor: yes you are right.I want to use that in php.i'm using the following code to ridirect the page if some field are missing... but all valid field are also flushed at the same time...so user has to type them again...i think you got my scenerio now.i want to hold the form fileld value already typed correctly in the re-register.php file... |
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 11-11-2003 16:43
shalvi: OK then that code I give should help. If not then you need to do soemthing like save the inputs in a session and then check to see if the values are set and if so fill the form fields. code: if (isset ($start_over)) {
|
Nervous Wreck (II) Inmate From: |
posted 11-13-2003 22:00
sorry for the late response.....yes it's working......i am simply using |