Hello,
Due to security reasons register_globals should be off.
Instead I am using $_POST for accessing posted variables.
But how do I access posted arrays from forms like:
<input type="checkbox" name=cbx[] value="xx" >
<input type="checkbox" name=cbx[] value="xx" >
<input type="checkbox" name=cbx[] value="xx" >
...
e.g. count($_POST["cbx"]) returns "0"
?