Hi
Php dont get the values from the checkboxes. It does not matter how much checkboxes I check, so I think some html code is wrong.
Here is a cutout of the html code:
PHP-Code to get the values:
Php dont get the values from the checkboxes. It does not matter how much checkboxes I check, so I think some html code is wrong.
Here is a cutout of the html code:
| Code: |
|
<form action="index.php?option=com_jms&hidemenu=1&func=outbox&Itemid=51" method="post" name="adminForm"> .............. <tr class="sectiontableentry1 jms-readed"> <td width="7px">1</td> <td width="9px"><input type="checkbox" id="cb0" name="mid[]" value="5" onclick="isChecked(this.checked);" /></td> <td width="30%"><a href="index.php?option=com_jms&func=read&id=5&Itemid=51">To: test2</a></td> <td><div class="jms-submsg"><a href="index.php?option=com_jms&func=read&id=5&Itemid=51">test - sdgdfgdgdfg</a></div></td> <td width="125px" align="right"><a href="index.php?option=com_jms&func=read&id=5&Itemid=51">25-11-2006 19:07</a></td> </tr> <tr class="sectiontableentry2 jms-readed"> .......... <td width="9px"><input type="checkbox" id="cb1" name="mid[]" value="3" onclick="isChecked(this.checked);" /></td> ........... </tr> <tr class="sectiontableentry1 jms-readed"> .......... <td width="9px"><input type="checkbox" id="cb2" name="mid[]" value="1" onclick="isChecked(this.checked);" /></td> ............ </tr> ............ </form> |
PHP-Code to get the values:
| Code: |
| $_POST['mid'] |
