I'm trying to store a form of checkcboxes into a session variable so I can echo it out on a different page. EXAMPLE: User picks first two checkboxes on page 1. Page redirects to page 2 where "apple" and "banana" is printed.
Form:
<form action="" method="post">
<input name="crate[]" value="apple" type="checkbox">
<input name="crate[]" value="banana" type="checkbox">
<input name="crate[]" value="potato" type="checkbox">
<input type="submit" name="Submit" value="submit">
</form>