I have a basic products page in which the user chooses one or more products (via checkbox array). The information is passed to the next page using this little piece of code I found:
foreach ($wishlist as $item_checked)
{
echo "$item_checked\n";
}
The user then verifies the product choices and fills out the rest of the data on the page (ie, name, email blah blah)..
The problem is that I can't seem to find a plausible way to mail the passed values of the products page along with the user info on the second page in one package...
This is probably stupid easy but it's ok because I'm php-stupid 🙂
Thanks in advance!
Rob