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

  • SEARCH
  • Home
  • 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 9170243
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:59:23+00:00 2026-06-17T15:59:23+00:00

I have an HTML order form with approx 100 possible entries. The form posts

  • 0

I have an HTML order form with approx 100 possible entries. The form posts to a PHP file. The PHP file send an email with the order quantities and $totals per item.
The problem is that it sends the info when the quantity = 0 – which, of course, makes the resulting email quite cumbersome.
SO, my question is: How do I NOT send the info when the quantity is 0

Here is an example of the coding I have for the POST portion:

if( !empty($_POST[""]) )
else
{
    $qtyG01lg = 0;
    $totalG01lg = 0;
}

And here is the part I do NOT want to send if the quantity is “0”:

$body .= "     G01-large: (" . $qtyG01lg . " @ $10.00ea) = " . $totalG01lg . "\n";
  • 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-06-17T15:59:24+00:00Added an answer on June 17, 2026 at 3:59 pm

    The lines for checking if the quantity is 0 set should be,

     if( $qtyG01lg > 0 && $totalG01lg > 0 )
      $body .= "     G01-large: (" . $qtyG01lg . " @ $10.00ea) = " . $totalG01lg . "\n";
    

    Also, you cannot have an empty string as the name/key in $_POST (if( !empty($_POST[""]) )). So, the line should be,

     if( !empty($_POST) ) //or specify the key/index for quantity or whatever you want to check
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have order confirmation html emails being parsed by a PHP script. The script
I have a form on a page that sends data to php file via
I have an HTML form page which I post back to itself in order
I have this html <form method=POST action= id=order class=forms> <div> <span class=col1>Ref.</span> <span class=col2>Number</span>
I have following HTML table: <form method=post action=update-table.php> <table class=table-data style=width: 960px;> <thead> <tr>
So I have created an order form in HTML + Javascript, and what I
I have an html form which uses jquery focus and blur in order to
I have an HTML order form that collects info and then on submission passes
I have a HTML (table) order form. Users need to fill in various cells
assume I have a such html order <div id=header>>Header(logo, navigation menus etc)will be here,

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.