这是form.php文件,我想将导出按钮文件放到另一个php文件中。对于php语言我仍然很蠢。
<form action="<?php echo url_for("attendance/viewAttendanceRecord"); ?>" id="reportForm" method="post" name="frmAttendanceReport">
<fieldset>
<ol>
<?php
if ($form->hasErrors()) {
echo $form['employeeName']->renderError();
}
?>
<?php echo $form->render(); ?>
<?php echo $form->renderHiddenFields(); ?>
<li class="required">
<em>*</em> <?php echo __(CommonMessages::REQUIRED_FIELD); ?>
</li>
</ol>
<p class="formbuttons">
<input type="button" class="" id="btExport" onclick='myfunction()' value="<?php echo __('Export') ?>"/>
我想在此action.php文件中使用导出功能
if($post['export'] == '1')
{
//statement
}
答案 0 :(得分:1)
Php使用元素的name
属性来构建$_POST
数组。因此,将name
属性与其他输入元素一起添加到按钮中,如下所示。
<input type="submit" id="btExport" name="btExport" value="<?php echo __('Export') ?>"/>
action.php 中的执行以下操作以处理发布的值。
if($_POST["btExport"])
{
//statement
}
或者你也可以检查$_POST
是否为空,如下所示
if (!empty($_POST))
{
//statement
}