The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.31 (Linux)
|
![]() |
Submit Form BUT never leave the page. - Printable Version +- Form Tools (https://forums.formtools.org) +-- Forum: Form Tools (https://forums.formtools.org/forumdisplay.php?fid=1) +--- Forum: General Discussion (https://forums.formtools.org/forumdisplay.php?fid=5) +--- Thread: Submit Form BUT never leave the page. (/showthread.php?tid=831) |
Submit Form BUT never leave the page. - bwaye - Sep 1st, 2010 I have one include to collect form information from multiple sub-domains which are not connected. Does anyone know of a way to submit the form , stay on the page and display a message that the form was received. RE: Submit Form BUT never leave the page. - Ben - Sep 3rd, 2010 Sure, no problem. You could do it in two ways: one, just use the API and don't specify a "next_page" option (or specify the same one that you're currently on). Then in the page (in PHP), check to see if the form has been submitted. If it has, show a "Form Submitted" message - otherwise just show the form. Alternatively, you could submit the form via Ajax and just show a "Form Submitted" message in the page, once you get a success response from the server. Kind of high-level advice, but it's very do-able. - Ben RE: Submit Form BUT never leave the page. - bwaye - Sep 3rd, 2010 (Sep 3rd, 2010, 9:37 AM)Ben Wrote: Sure, no problem. You could do it in two ways: one, just use the API and don't specify a "next_page" option (or specify the same one that you're currently on). Then in the page (in PHP), check to see if the form has been submitted. If it has, show a "Form Submitted" message - otherwise just show the form. Thanks - will post back the final solution RE: Submit Form BUT never leave the page. - bwaye - Sep 11th, 2010 (Sep 3rd, 2010, 8:07 PM)bwaye Wrote:(Sep 3rd, 2010, 9:37 AM)Ben Wrote: Sure, no problem. You could do it in two ways: one, just use the API and don't specify a "next_page" option (or specify the same one that you're currently on). Then in the page (in PHP), check to see if the form has been submitted. If it has, show a "Form Submitted" message - otherwise just show the form. ------------- Not as pretty as a AJAX but it works: <?php if (isset($_POST['submit'])) { print "<div class=\"h1span\">Thank you!</div>\n"; } ?> RE: Submit Form BUT never leave the page. - Ben - Sep 12th, 2010 Excellent! No, that's much simpler, actually (and will work without JS enabled...). - Ben |