|
|
|
| ||||||||||||||||||||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
To show the filled in fields.
Hey,
I'm dealing with different form and concepts all at same time. I think I posted about saving the contents and suggested me to go for session. Now after I have my page as below: ( Code:
Name create date sent date status action form1 12/22/09 01/20/2010 completed checkbox form2 ...... ..... " When I click on form1, I need to see the already filled contents for name, uploaded file path, text box contents, or else uploaded wav file etc etc, coz below this same form I'm giving an option Click here to create a new form. So once they click the button it'll direct them to new form. How can I make the already filled things etc etc? Please let me know for any clarifications in the explanation. Any help! |
|
#2
|
|||
|
|||
|
You have the form data in variables correct? No matter what you will have to put the data into variables then you can do something as easy as this:
Then you would do this as example Code:
<input type="text" name="whatever" value="<?php echo $var; ?>" />
__________________
- Richie |
|
#3
|
|||
|
|||
|
Hey,
The name is just a part of my HTML form. So it's not a variable but just a text box in the form. Code:
<html> <body> <form method="post" action="pg.php"> Name of Candidate:<input type="text" name="event"> </form> </body> </html> It's like they fill out the form, but when they try to review later after few days or month, the contents filled in respective fields should be available. If you still don't get me, just let me know. |
![]() |
| Viewing: Codewalkers Forums > PHP Related > PHP Coding > To show the filled in fields. |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|