使用导出按钮功能到另一个php文件

时间:2015-07-09 08:23:09

标签: php

这是form.php文件,我想将导出按钮文件放到另一个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文件中使用导出功能

action.php的

if($post['export'] == '1')
{
  //statement
}

1 个答案:

答案 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
}