我正在使用joomla 3.4.6和Form Maker组件,我正在尝试修改提交页面。
我有一个包含一些数据的表和一个包含复选框的列。我还有一个按钮“保存” 当我单击“保存”按钮时,我想保存数据库中复选框的值(0表示未选中,1表示已选中)
我希望我提供有意义的代码片段。
保存按钮
<div>
<input type="hidden" name="hide_label_list" value="<?php echo $lists['hide_label_list']; ?>" />
<input type="button" style="vertical-align:middle; cursor:pointer" value="<?php echo JText::_( 'save' ); ?>" />
</div>
从数据库中选中复选框
<table class="submissions" width="100%">
...
<tr class="<?php echo "row$k"; ?>">
<td align="center"><?php echo $www+1+$pageNav->limitstart;?></td>
<?php
if(1==1)
{
if($resolved == 0)
echo '<td align="center">
<input type="checkbox">Closed</input>
</td>';
else
echo '<td align="center"><input type="checkbox" checked>Closed</input></td>';
}
...
</table>
我检查了https://docs.joomla.org/Inserting,_Updating_and_Removing_data_using_JDatabase和其他谷歌搜索结果,但因为我是php / joomla的新手并且正在使用现有的扩展程序[Form Maker],这使得它很难理解。
这是full php file以防它更有意义
如果选中并单击“保存”按钮,我该如何更新?