基于php中的输入调用表单

时间:2011-09-12 06:51:46

标签: php mysql forms

这个问题可能对你们每个人来说都很简单,但我不知道如何实现这个问题。

我正在生成报告。我的报告包含每月和每日报告。我有一个下拉列表,可以在每月和每天之间进行选择...我的问题是,当我点击下拉列表中的一个选项(每月或每月)时,如何制作一个提示按钮,指示我每月或每日页面每天)根据我也输入的时间。请帮忙......

(我有一个MySQL数据库)。

2 个答案:

答案 0 :(得分:1)

您可以添加报告,因此您可以发布到相同的网址(例如createReport.php):

if ($_POST['period'] == 'daily') 
{
    include('reports/dailyReport.php');
}
elseif ($_POST['period'] == 'monthly') 
{
    include('reports/monthlyReport.php');
}
else
{
    include('error/noSuchReport.php');
}

答案 1 :(得分:0)

将表单的操作说出(form.php)并将变量传递给此文件

在这个文件中

写一个这样的代码:

    <?php
    if($_REQUEST['x']=='something')
    {
         include('somefile.php');
    }
    else
    {
         include('someotherfile.php');
    }
    ?>

我认为这是一种方式