Hi everyone, I have a small question.
I'm trying to store values from an array of checkboxes into a column in a MySQL table. I see PHP has a serialize() and unserialize() function (seen
here ) to do just that.
Does JSP have anything similar?
Now just to be certain, I don't want to store every value from the checkbox array in a separate row, I want them to be all on one row of one column and can be broken down into their individual components upon request.
Thanks.