I would really appreciate any help with this one...
I have a multi-answer checkbox in a form;
I would like to empty the contents of the array into a database table (perhaps as a string) so that I can retrieve them later.
At the moment the code returns Array.
Ive used this code to list the selected elements however, I do not wish to print them rather create a string and insert this info into Mysql.
// use a "for" loop to read and display array elements
for($count = 0; $count < sizeof($you); $count++)
{
echo "<i>$you[$count]</i><br>";
}
Where do I go from here? Much Thanks;
Chris