I am not for sure how to do this...
I have a form that is like this...
<form action="script.php" method="post">
<input type=checkbox name=term value="abc; ">
<input type=checkbox name=term value="net; ">
<input type=checkbox name=term value="cat; ">
<input type=checkbox name=term value="dog; ">
<input type=checkbox name=term value="fish; ">
<input type=submit value="GO">
The script.php is executed, but it only shows one of the "checked" terms. I would like it to get it like this to use...
net; dog; fish;
NOT just...
fish;
I assume this has to be done by making the submitted information an array, and then making it into a variable?
Please let me know.
Thanks! 🙂