繁体   English   中英

将变量从一个文件传递到另一个文件 (PHP)

[英]Passing variables from one file to another (PHP)

所以我正在创建这个报告页面,用户可以在其中选择报告类型和日期。 单击提交按钮后,将显示 2 个新按钮,一个用于以 excel 格式下载报告,另一个用于以 PDF 格式下载。 根据选择的报告类型,我有将处理报告的特定文件。 我已经测试了特定文件,当我使用硬编码日期时,它们确实正确生成了报告。 但我希望能够使用用户选择的日期。 请看一下我的代码,让我知道我缺少什么。 谢谢!!

saereport.php:

<!DOCTYPE html>
<HTML lang="en">
<HEAD>
    <meta charset="utf-8">
    <link rel="stylesheet" href="css/style2.css">
    <TITLE>SAE Report</TITLE>
    <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
    <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$().ready(function() {
  $(".datepicker").datepicker({dateFormat:'yy-mm-dd'});
});
</script>

</HEAD>
<BODY>
<center>
<h1>SAE Report</h1>
</center>
 <form action = "" method = "post">
 <label>Report Type</label>
    <select id="report" name="report">
        <option value="none"></option>
        <option value="new">New SAEs Report</option>
        <option value="cumulative">Cumulative SAE Report</option>
    </select>
 <label>Start Date</label><input type="text" class="datepicker" name="start">
 <label>End Date</label><input type="text" class="datepicker" name="end">
 <input type="submit" name="submit" value="Submit">
 </form>
</BODY>
</HTML>

<?php
$type='';
$start='';
$end='';

if (isset($_post['submit'])){

    $type=$_post['report'];
    $start=$_post['start'];
    $end=$_post['end'];

    if ($type=="cumulative"){
        echo "<form action='cumulativeRptExcel2.php?='.$end. method='get' name ='xls'>";
        echo "<input type='submit' name='submitXLS' value='Download Excel'/>";
        echo "</form>";
        echo "<form action='$cumulativePDF' method='post' name ='xls'>";
        echo "<input type='submit' name='submitXLS' value='Download PDF'/>";
        echo "</form>";
    }
    elseif($type=='new' and $startdt!='' and $enddt!=''){
        echo "<form action='$newXLS' method='get' name ='xls'>";
        echo "<input type='submit' name='submitXLS' value='Download Excel'/>";
        echo "</form>";
        echo "<form action='$newPDF' method='get' name ='xls'>";
        echo "<input type='submit' name='submitXLS' value='Download PDF'/>";
        echo "</form>";
    }
    elseif($type="new" and ($start=='' or $end=='')){
        echo "You need to select START and END date for the report";
    }   
}
?>

我的累积RptExcel2.php开头:

<?php
include ('connect.php');
$endDT='';
if (isset($_get['enddt'])){ 
   $endDT=$_get['enddt'];
}
$query="SELECT * from sae_cumulative_report2($endDT)";
$result = pg_query($db, $query);
...
?>

由于我无法生成按钮,因此用户可以选择他们想要的下载文件(xls 或 pdf)。 现在,我最终只是自动下载了 Excel 文件。 这是代码:

<!DOCTYPE html>
<HTML lang="en">
<HEAD>
    <meta charset="utf-8">
    <link rel="stylesheet" href="css/style2.css">
    <TITLE>SAE Report</TITLE>
    <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
    <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
  $().ready(function() {
  $(".datepicker").datepicker({dateFormat:'yy-mm-dd'});
 });
</script>

</HEAD>
<BODY>
<center>
<h1>SAE Report</h1>
</center>
 <form action = "processReport.php" method = "GET">
 <label>Report Type</label>
    <select id="report" name="report">
        <option value="none"></option>
        <option value="new">New SAEs Report</option>
        <option value="cumulative">Cumulative SAEs Report</option>
    </select>
 <label>Start Date</label><input type="text" class="datepicker" name="start">
 <label>End Date</label><input type="text" class="datepicker" name="end">
 <input type="submit" name="submit" value="Submit">
 </form>
</BODY>

进程报告.php:

$type='';
$startdt='';
$enddt='';
if (isset($_GET['submit'])){

    $type=$_GET['report'];
    $startdt=$_GET['start'];
    $enddt=$_GET['end'];

    if ($type=="cumulative" and $enddt!=''){
        $query="SELECT * from sae_cum_decoded('$enddt')";
        $filename='SAE_CumulativeReport_';
        $insideTitle="Cumulative SAEs Report";
        processFile($db,$filename, $insideTitle,$query);
    }
    elseif($type=='new' and $startdt!='' and $enddt!=''){
        $query="SELECT * from sae_new_decoded('$startdt','$enddt')";
        $filename='SAE_NewReport_';
        $insideTitle="New SAEs Report";
        processFile($db,$filename, $insideTitle,$query);
    }
    else
        echo '<script language="javascript">';
        echo 'alert("In order to generate a report, a REPORT TYPE needs to be selected.\nFor Cumulative SAEs Report, END DATE is required.\nFor New SAEs Report, START DATE and END DATE are required.")
        window.location.href="saereport5.php"';
        echo '</script>';


}

function processFile($db,$filename, $insideTitle, $query){
...}

弄清楚如何使用按钮执行此操作会很好,因为将来用户将需要同时拥有这两个选项。

代码前的一些注释:

  1. 变量名区分大小写。 如@toh19 所述,使用$_POST而不是$_post _post ;
    参考: http : //php.net/manual/en/language.variables.basics.php

  2. 不要直接相信用户输入。 在这种情况下,为了更安全,您可以根据正则表达式验证用户输入。
    参考: http : //www.phptherightway.com/#data_filtering

编码:

<!DOCTYPE html>
<HTML lang="en">
    <HEAD>
        <meta charset="utf-8">
        <link rel="stylesheet" href="css/style2.css">
        <TITLE>
            SAE Report
        </TITLE>
        <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
        <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
        <script>
            $().ready(function() {
                $(".datepicker").datepicker({
                    dateFormat:'yy-mm-dd'}
                                           );
            }
                     );
        </script>
    </HEAD>
    <BODY>
        <center>
            <h1>
                SAE Report
            </h1>
        </center>
        <form action = "" method = "post">
            <label>Report Type</label>
            <select id="report" name="report">
                <option value="none"></option>
                <option value="new">New SAEs Report</option>
                <option value="cumulative">Cumulative SAE Report</option>
            </select>
            <label>Start Date</label>
            <input type="text" class="datepicker" name="start">
            <label>End Date</label>
            <input type="text" class="datepicker" name="end">
            <input type="submit" name="submit" value="Submit">
        </form>
    </BODY>
</HTML>
<?php
$type='';
$start='';
$end='';
if (isset($_POST['submit'])){
    $type=$_POST['report'];
    $start=$_POST['start'];
    $end=$_POST['end'];
    if ( $type == 'cumulative') {
        echo "<form action='cumulativeRptExcel2.php?&enddt=$end' method='POST' name='xls'>";
        echo "<input type='submit' name='submitXLS' value='Download Excel'/>";
        echo "</form>";
        echo "<form action='$cumulativePDF' method='post' name ='xls'>";
        echo "<input type='submit' name='submitXLS' value='Download PDF'/>";
        echo "</form>";
    }
    elseif ($type == 'new') {
        if (empty($start) || empty($end)) {
            die("You need to select START and END date for the report");
        }
        echo "<form action='$newXLS' method='get' name ='xls'>";
        echo "<input type='submit' name='submitXLS' value='Download Excel'/>";
        echo "</form>";
        echo "<form action='$newPDF' method='get' name ='xls'>";
        echo "<input type='submit' name='submitXLS' value='Download PDF'/>";
        echo "</form>";
    }
}

更新

  • 之前的代码存在语法问题(累积类型的表单动作);
  • 如果您想通过查询字符串( cumulativeRptExcel2.php?&enddt=... )传递变量,您必须将表单METHOD更改为POST ,否则(GET 方法)您需要为 enddt 值创建一个隐藏字段;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM