Sarah
|
| Posted: 08/06/2002, 9:41 AM |
|
I have built a content management system for a client using CC. What I am wanting to change is one form has a record and grid. I have a upload system on that page that redirects the user to an process upload page and then redirects the user back to the original page and fills in a field called picture with the image name. The problem is when the user is finished the other boxes, besides picture, have been reset. How do I make the original page info stay in the boxes?
|
|
|
 |
Sarah
|
| Posted: 08/06/2002, 9:53 AM |
|
By the way I am using php and mysql. Thanks!
|
|
|
 |
Henry
|
| Posted: 08/06/2002, 10:50 PM |
|
In the process upload page, you can use the set_session() function to set session variables to hold the values of the submitted fields. The session variables will then be available when you return to the original page so you can define input parameters to capture the session variables and set the values of the fields.
|
|
|
 |
|