I'm allowing a user to choose between three packages the one they want. They may also choose multiples of these packages, as in 1+2 or 1+3 or 1+1+2+3 etc.
I'm reading in their package selection from a mysql database and have exploded the + sign. How can I create a loop to cycle through the array generated to pick off the different packages he/she ordered?
<PRE>
$getpackage = $row->PACKAGE;
$package = explode("+", $getpackage);
.
.
.
.
.
</PRE>
Any ideas welcomed. 🙂
Marcel.