Hi,
I need to figure out a way to do the following:
Create a 'Click here' hyperlink that includes an id # from query results. This is no big deal...
<a href="wishlist.php?wishlist[]=<? echo $row['Id']; ?>
Notice I am trying to create an array called wishlist.
I need to store multiple Id numbers that are clicked. So the array could have the end results of something like:
Array ( [0] => 149057 [1] => 149057 [2] => 149057 [3] => 149057 )
I need to be able to store an array in a session.
I am having one heck of a time figuring this out.
Can someone give me some assistance?
My goal is to create a 'wishlist' that stores the Id numbers of items that are clicked.
Thanks