I want to write a simple PHP function to insert values of 10 and 20 check boxes. Now, the issue is: should I insert all values in a single column of MySQL table or should I
use implode function to convert returned array into a string an then insert it into database as normal
if(isset($_POST['submit'])){ $result = implode(",",$_POST['games']);
}
hopefully this will help you. Regards Imran Qasim