Jump to content

Moving form processing scripts to another file


drtanz

Recommended Posts

Hi I have two forms on my page and their processing scripts are currently on the same page. I would like to move them off the page so they don't load each time and also to reduce the amount of code for readability. I want the page containing the form to send the form output to the form processing page but then redirect back with a message displayed on the original page containing the form. How would I do this? thanks

Link to comment
Share on other sites

After the processing of the form you can use the header function:

    eg. header('Location: index.php?form=processed');exit();      //here index.php refers to your page with the forms

 

then on the index page (or watever you page name is...the one with the forms) use

      if($_GET['form']=='processed')

      {

                echo 'Message:Form processed';

      }

 

please note that when you use the header() function there cannot be anything that print in the code above the header() function.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.