does anyone have any idea why $_POST not being set??
here is some of the code.
<form method="post" name="form" id="clientForm" action="">
<input type="submit" name="sub" value="Delete_Checked"/>
<?php if ($i%2){ ?> class="even"<?php } ?>
<input type="checkbox" name="doc[]" value="<?php echo $document->doID; ?>"/>
<?php $i++; } ?>
</form>
<?php
if (isset($_POST['sub']) == 'Delete_Checked'){
print_r($_POST['sub']); // nothing gets print.
......
}
?>
i must be overlooking something.
actionattribute of the<form>element? – Oli Charlesworth May 1 '11 at 23:12