I am having some trouble setting cookies (cookies with multiple values). The first value is set, but the second isn't. Anything I'm doing wrong? Here is my code:
<?php
setcookie("gbx[0]", $memberid, time() + 3600, '/');
setcookie("gbx[1]", $membergroup);
?>