Karl-Arne Gjersøyen wrote:
// start the table

$total = 0;

>echo "<table border=1>";
>echo "<tr><th>Product</th><th>**Amount</th></tr>";
>
>// loop thru each item found
>while ($results = $qrslts->fetch(PDO::FETCH_**ASSOC))
>{
>    echo "<tr><td>".$results['product_**name']."</td><td>".$results['**
>product_amt']."</td></tr>";
$total += $results['product_amt']
>}
>

echo "<tr><td>Total:</td><td>".$total."</td></tr>";

>// finish the table html
>echo "</table";

Yes that part is OK. I do have problem to add total weight and package at
bottom of the table like this:

Product_one   40kg
Product_two   60kg
-------------------------
Total:             100kg
===============


--
Lester Caine - G8HFL
-----------------------------
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk
Rainbow Digital Media - http://rainbowdigitalmedia.co.uk

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to