reusing submitted form values??

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
ant_sutton
Forum Commoner
Posts: 32
Joined: Thu May 05, 2005 5:27 am

reusing submitted form values??

Post by ant_sutton »

Hi everyone.

Could anyone help mw with this simple problme please? I have a html form that when submitted takes you to a comfirmation page to confirm what was entered into the form. Is there a way to have a 'resubmit' button that copies the values entered into the form and pastes them into the original form so another entry can be made quicker without having to select all the valeus again.

Thanks alot
User avatar
anjanesh
DevNet Resident
Posts: 1679
Joined: Sat Dec 06, 2003 9:52 pm
Location: Mumbai, India

Post by anjanesh »

You can either use Sessions or simple include <input type="hidden"> tags for the ones already posted.
Sessions is better.

Dont see how this is related to Theory & Design
User avatar
patrikG
DevNet Master
Posts: 4235
Joined: Thu Aug 15, 2002 5:53 am
Location: Sussex, UK

Post by patrikG »

moved to PHP Code
Post Reply