I am working on a enrollment system for a judo club. I am using a string to store the ID\'s of people, who showed up. It looks somthing like this:
0,3,4,7,8,10,
Use explode()
$ids = explode(',', '0,3,4,7,8,10');