Jump to content

The recommended way to verify a form was submitted.


atrum

Recommended Posts

So I am aware that there are many ways to skin a cat as the saying goes, and I am trying to decide what is the recommended way to verify that a form was submitted.

 

Take for example a simple form, a few fields, some buttons, etc, etc.....

 

Now when a user submits that form, I want to verify on the php end that the form was submitted.

 

I can use isset or empty, and im sure many other ways.

 

What do you prefer/ recommend when verifying form submissions?

Link to comment
Share on other sites

The most reliable way is to create a hidden filed within the form and name it (for instance) 'submit'. You then check this index is set within the $_POST or $_GET array depending on your form's method. eg;

 

if (isset($_POST['submit'])) {
  // process form
}

 

Some people simply name there submit button 'submit' and check for that. Unfortunately, not all browsers will send this.

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.