after processing the form , rather than redirecting you to a page how would i generate a popup saying "form submitted" or something?
I did it once or twice but i forgot how![]()
Thanks!
Jon
after processing the form , rather than redirecting you to a page how would i generate a popup saying "form submitted" or something?
I did it once or twice but i forgot how![]()
Thanks!
Jon
at the end of processing put whatever you want to have it say.
Code:<?php if($submitted) { process(); if( !$errors ) { echo "Form Submitted"; } else { goBackToForm() } } ?>
Bookmarks