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
https://forums.phpfreaks.com/topic/268628-select-and-show-total/
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)

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.