I have this code on a custom menu:
<form method="post" action="options.php">
<?php wp_nonce_field('update-options') ?>
<input type="checkbox" name="myoption[option_one]" value="1"<?php checked( 1 == $options['option_one'] ); ?> />
<input type="checkbox" name="myoption[option_two]" value="1"<?php checked( 1 == $options['option_two'] ); ?> />
<input type="submit" name="Submit" value="Update Options" /></p>
<input type="hidden" name="action" value="update" />
<input type="hidden" name="page_options" value="logoimageheight" />
</form>
All i want is to dispaly some checkboxes and save it as a global custom field. When im hitting submit my choice is not stored , what am i doing wrong ?
Thanks Lior
