Posted by Stephen Johnson on 02/25/05 20:01
for ($i = 1; $i <= $sendnum; $i++)
{
$qty = $_POST['qty'.$i];
$total = $total + $qty;
echo $qty . '<br />';
}
echo "Total $total";
<?php
/*
Stephen Johnson c | eh
The Lone Coder
http://www.thelonecoder.com
stephen@thelonecoder.com
562.924.4454 (office)
562.924.4075 (fax)
continuing the struggle against bad code
*/
?>
> From: "Jay Fitzgerald" <jayfitz@bayou.com>
> Organization: Bayou Internet
> Reply-To: <jayfitz@bayou.com>
> Date: Thu, 24 Feb 2005 09:39:16 -0600
> To: <php-general@lists.php.net>
> Subject: [PHP] help with adding
>
> The code below is echoing the qty correctly (10, 5, 25)
>
>
>
> for ($i = 1; $i <= $sendnum; $i++)
>
> {
>
> $qty = $_POST['qty'.$i];
>
> echo $qty . '<br />';
>
> }
[Back to original message]
|