I have these checkboxes on my website and user choices the appropriate one for himself. What is the best way to store it in the database? For example, user selects "Bluetooth", "Camera", "Sunroof" and "Taxi". And I insert their value as an array to the database like "2 3 7 15". How can I later echo them and make them to shows on the page like "Bluetooth Camera Sunroof Taxi"? Or do you have any other ideas? Thanks in advance!
P.s: As my website will be multilanguage, for this reason, I cannot store just string values.

language_keyand use this key in the language array$lang['language_key'] = 'The actual message to be shown';!