Hi
I was wondering if it's anything wrong with using serialize to send my objects via hidden values to the action page. I use:
<input type="checkbox" name="chkbox" value="<?=urlencode( serialize( $myObj ) )?>">
So, it writes the name of my classes in the value part of the checkbox, and I was wondering if it can cause any security problem. I can simply put the id of what I like to be transfered in the value and then I find it in the action page by selecting its value from the database. But if it's nothing wrong with using serialize, it's really easier this way I think!
Thanks for your help