try for insertion
<?
$items["name"][]=$curr_name;
$items["quantity"][]=$curr_quantity;
$items["price"][]=$curr_price;
$items["total"][]=$curr_total;
// this basically inserts a new item in the items array
// then
echo "THERE ARE ".count($items["name"])." ITEMS IN THE SHOPPING CART<br>";
//your code would be something like
print "<table width=90%>";
print "<tr>";
print "<td width=70%>Description</td>";
print "<td width=10%>Quantity</td>";
print "<td width=10%>Price</td>";
print "<td width=10%>Item Total</td>";
print "</tr>";
print "<tr>";
print "</tr>";
for ($i=0; $i < count($items["name"]); $i++)
{
print "<tr>";
print "<td width=70%>".$items["name"][$i]."</td>";
print "<td width=10%>".$items["quantity"][$i]."</td>";
print "<td width=10%>".$items["price"][$i]."</td>";
print "<td width=10%>".$items["total"][$i]."</td>";
print "</tr>";
}
print "</table>";
?>
Saludos
Gerardo