Forum Moderators: mack
May I ask which would be the best way to go about accomplishing this? I could either refresh the whole page while somehow turning off deletion of the visitor's entries. Or, I could place the image+code in a separate frame, with its own refresh capability.
I should add that this is a PHP-based (+ HTML) effort.
Thanks for reading this,
Eugene
if you don't wont to be bound to javascript or similar, just put a second submit button with the name "refresh" into that form.
if the user clicks that 'refresh' submit button, then in you php script the variable $refresh will be set. so you can check with isset if the refresh button has been pressed and you can re-display the form with the values the user already put in (because these were submitted either).
so this is a solution which is php based.