Jump to content

select and show total


techker

Recommended Posts

Hey guys i have a portal that im doing for invoicing..

 

i have a page that shows all the unpaid invoices..

 

i put a check box next in the form...how can i select multiple selection and print the total amount of the selected with the invoice numbers.??

 

like

 

check box. invoice 2122  total 200$

check box. invoice 2123  total 200$

check box. invoice 2124  total 200$

check box. invoice 2125  total 200$

check box. invoice 2126  total 200$

 

 

so the print out would be

 

invoices:

2122-2123-2124-2125-2126 total before tax:1000$

 

 

 

Link to comment
Share on other sites

First, the checkbox values should be the respective invoice numbers

 

<input type='checkbox' name='selectedInvoice[]' value='$invnumber'>

 

To process

$list = join(',', array_map('intval', $_POST['selectedInvoice']));

 

the query

SELECT
   GROUP_CONCAT(invoicenumber SEPARATOR '-') AS invoices,
   SUM(invoicetotal) AS total
FROM invoices
WHERE invoicenumber IN ($list)

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.