Read about database normlization.
Create one table that holds the subscribers, with a subscriber_id.
Create another table that holds categories, with a category_id.
Create another table that holds only a subscriber_id and a category_id.
Create a record in the third table for each combination of subscriber and category that you need.
to get all categories for a subscriber:
SELECT *
FROM subcatlink
WHERE subcatlink.subscriber_id = $subscriber_id