|
Posted by J2be on 10/12/59 11:37
> // display each order line - this part works
> // add each order line to an array - only gets the second (last) cart item
> $OrderLines = array($i => array("Item" => $$tempname,
> "Qty" => $$tempquantity,
> "Extended" => $$tempgross ));
> }
<?PHP
//declare the array at the top of your code
$OrderLines = array();
//........
//tell to which key you want to add the array as value
$OrderLines[$i] = array("Item" => $$tempname, "Qty" => $$tempquantity,
"Extended" => $$tempgross );
//you can also use array_push() function to have the same result.
?>
-------------------------------------------------
Cheers.
--
----
Leonardo Armando Iarrusso - J2Be
www: http://www.J2be.com - e-mail: info[at]J2Be.com
Navigation:
[Reply to this message]
|