A better way is to create an array of hobbies and store then in one field. I do this for a shopping cart where products have multiple options.
I assume that you are using checkboxes to get the hobbies. Just create an array by naming all the checkboxes the same. Then on th epage that does the processing to add the values to the DB just add the line
$hobbies = implode(",",$hobbiesCheckbox)
Depending on the values you pass to the page you will get a string of words if you set the values of the chcek boxes to value="computers" and value="climbing" which get the result:
$hobbies="computers,climbing"
or
numbers if value="1" and value="2"
$hobbies="1,2"
If you're not dutch, you're not much
Bastien