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
[EMAIL PROTECTED]
562.924.4454 (office)
562.924.4075 (fax)
continuing the struggle against bad code
*/
?>
> From: "Jay Fitzgerald" <[EMAIL PROTECTED]>
> Organization: Bayou Internet
> Reply-To: <[EMAIL PROTECTED]>
> Date: Thu, 24 Feb 2005 09:39:16 -0600
> To: <[email protected]>
> 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 />';
>
> }
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php