Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6210749
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:12:55+00:00 2026-05-24T06:12:55+00:00

I have a simple contact form with a checkbox, once valid and submitted I

  • 0

I have a simple contact form with a checkbox, once valid and submitted I echo out the results of the form. I would like the checkbox item to return YES if checked and NO if blank.

Here is my snippet:

 $subject = "Website Contact Form Enquiry";

//If the form is submitted
if(isset($_POST['submit'])) {

    //Check to make sure that the name field is not empty
    if(trim($_POST['contactname']) == '') {
        $hasError = true;
    } else {
        $name = trim($_POST['contactname']);
    }

    //Check to make sure sure that a valid email address is submitted
    if(trim($_POST['email']) == '')  {
        $hasError = true;
    } else if (!eregi("^[A-Z0-9._%-]+@[A-Z0-9._%-]+\.[A-Z]{2,4}$", trim($_POST['email']))) {
        $hasError = true;
    } else {
        $email = trim($_POST['email']);
    }

    //Check to make sure comments were entered
    if(trim($_POST['message']) == '') {
        $hasError = true;
    } else {
        if(function_exists('stripslashes')) {
            $comments = stripslashes(trim($_POST['message']));
        } else {
            $comments = trim($_POST['message']);
        }
    }

    if(isset($_POST['tour']) &&
       $_POST['tour'] == 'yes')
    {
        $tour = true;
    }
    else
    {
        $tour = false;
    } 

    //If there is no error, send the email
    if(!isset($hasError)) {
        $emailTo = 'info@bgv.co.za'; //Put your own email address here
        $body = "Name: $name \n\nEmail: $email \n\nComments:\n $comments";
        $headers = 'From: My Site <'.$emailTo.'>' . "\r\n" . 'Reply-To: ' . $email;

        mail($emailTo, $subject, $body, $headers);
        $emailSent = true;

    }
}

Heres the echo

        <?php if(isset($emailSent) && $emailSent == true) { //If email is sent ?>
        <div id="sadhu">
        <p class="general_site">Name:</p><p class="general_siter"><strong><?php echo $name;?></strong></p>
        <p class="general_site">Email:</p><p class="general_siter"><strong><?php echo $email;?></strong></p>
        <p class="general_site">Message:</p><p class="general_siter"><strong><?php echo $comments;?></strong></p>
        <p class="general_site">Tour:</p><p class="general_siter"><strong><?php echo $tour;?></strong></p>
        </div>
        <?php } ?>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T06:12:56+00:00Added an answer on May 24, 2026 at 6:12 am

    I think you could do (but i’m guessing because it’s not clear what element is the checkbox):

    if(isset($_POST['tour']) &&
       $_POST['tour'] == 'yes')
    {
        $tour = 'Yes';
    }
    else
    {
        $tour = 'No';
    } 
    

    In you case you echo 1 because you are echoing true whic is converted to 1 or false which is converted to 0

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very simple contact form with fields like this: <label> First Name<em>*</em>
I have a simple contact form with Subject and Message that I want to
I have a simple contact form thats throwing up an Notice: Undefined index: e
I have a simple contact form which uses jquery to post to a php
I have a simple form with some plain html input like bellow using ASP.NET
I have a very simple contact form on my site, Im looking for users
I have a simple contact form that works in every browser, except IE. It
I have a simple contact form on a website that has 2 text fields,
I have a simple contact form: <div class=contact-wrapper> <div class=grid_8 contact-form-wrapper> <form id=contactus method=GET
I have completed a simple contact form using Flash CS5 and AS2. Instead of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.