well, personally i'd put the answers into an array, and then serialize that array when storing into the db.
later when you catch it, you have to unserialize it again.
or you can use the way vb devs did it with poll questions by seperating the strings via ||| and then using implode and explode functions.
the serialize function should be explained in the tips and trix forums here, the implode version is used often in vb and should be quite selfexplaining
you may also look up php.net for infos about.
|