Code follows:
Code: Select all
<?php
print_r($_POST);
?>
<FORM ACTION="post_test.php" METHOD=POST>
<TABLE border="1" width="70%" >
<TR>
<td><input type="checkbox" name="checkies[]" value="This is a value"></td>
<td><input type="checkbox" name="checkies[]" value="This is also a value"></td>
</TR>
</TABLE>
<input type="submit" value="Submit">
</form>
Code: Select all
Array
(
[checkies] =>
)
Any ideas? Your help is greatly appreciated!