The following warnings occurred:
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 783 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 783 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined variable $newpmmsg - Line: 40 - File: global.php(841) : eval()'d code PHP 8.1.31 (Linux)
File Line Function
/global.php(841) : eval()'d code 40 errorHandler->error
/global.php 841 eval
/printthread.php 16 require_once
Warning [2] Undefined array key "style" - Line: 909 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 909 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$lang_select_default - Line: 5024 - File: inc/functions.php PHP 8.1.31 (Linux)
File Line Function
/inc/functions.php 5024 errorHandler->error
/global.php 909 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key "additionalgroups" - Line: 7162 - File: inc/functions.php PHP 8.1.31 (Linux)
File Line Function
/inc/functions.php 7162 errorHandler->error
/inc/functions.php 5044 is_member
/global.php 909 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key 1 - Line: 1415 - File: inc/functions.php PHP 8.1.31 (Linux)
File Line Function
/inc/functions.php 1415 errorHandler->error
/inc/functions.php 1370 fetch_forum_permissions
/printthread.php 76 forum_permissions
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 165 errorHandler->error



Form Tools
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.

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

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.

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

Thanks - will post back the final solution

-------------


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