繁体   English   中英

在我的图书馆管理系统中传递id和button单击参数后,我想以表格格式显示结果

[英]I want to display my results in table format after passing a parameter of id and button click in my library management system

这是我的全部代码,用于使用特定学生的学生ID生成报告。 我的SQL查询将显示该学生尚未归还的书籍清单。

在调试时,我注意到如果我在代码中手动放置任何学生ID,我可以看到结果,但是按钮单击功能不起作用...按钮不知何故没有从我的SQL查询中获取任何数据,也没有执行。

<?php
session_start();
error_reporting(0);
include('includes/config.php');
if(strlen($_SESSION['alogin'])==0)
{   
    header('location:index.php');
}
else
{ 
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
    <meta name="description" content="" />
    <meta name="author" content="" />
    <title>
        Online Library Management System | Report Generation
    </title>
    <!-- BOOTSTRAP CORE STYLE  -->
    <link href="assets/css/bootstrap.css" rel="stylesheet" />
    <!-- FONT AWESOME STYLE  -->
    <link href="assets/css/font-awesome.css" rel="stylesheet" />
    <!-- DATATABLE STYLE  -->
    <link href="assets/js/dataTables/dataTables.bootstrap.css" rel="stylesheet" />
    <!-- CUSTOM STYLE  -->
    <link href="assets/css/style.css" rel="stylesheet" />
    <!-- GOOGLE FONT -->
    <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' />

</head>
<body>
    <!------MENU SECTION START-->
    <?php include('includes/header.php');?>
    <!-- MENU SECTION END-->
    <div class="content-wrapper">
         <div class="container">
             <div class="row pad-botm">
                 <div class="col-md-12">
                    <h4 class="header-line">
                        Employee Reports
                    </h4>
                </div>
                <div class="row">
                    <?php if($_SESSION['error']!="")
                    {?>
                        <div class="col-md-6">
                            <div class="alert alert-danger" >
                                <strong>
                                    Error :
                                </strong> 
                                <?php echo htmlentities($_SESSION['error']);?>
                                <?php echo htmlentities($_SESSION['error']="");?>
                            </div>
                        </div>
                    <?php } ?>
                    <?php if($_SESSION['msg']!="")
                    {?>
                    <div class="col-md-6">
                        <div class="alert alert-success" >
                            <strong>
                                Success :
                            </strong> 
                            <?php echo htmlentities($_SESSION['msg']);?>
                            <?php echo htmlentities($_SESSION['msg']="");?>
                        </div>
                    </div>
                <?php } ?>

               <?php if($_SESSION['delmsg']!="")
               {?>
                   <div class="col-md-6">
                       <div class="alert alert-success" >
                           <strong>
                               Success :
                           </strong> 
                           <?php echo htmlentities($_SESSION['delmsg']);?>
                           <?php echo htmlentities($_SESSION['delmsg']="");?>
                       </div>
                  </div>
              <?php } ?>

          </div>


      </div>
      <div class="row">
          <div class="col-md-10 col-sm-6 col-xs-12 col-md-offset-1"">
              <div class="panel panel-info">    
                  <div class="panel-body">
                      <form role="form" method="post">

                          <div class="form-group">
                              <label>
                                  CPF NUMBER<span style="color:red;">*</span>
                              </label>
                              <input class="form-control" type="text" name="studentid" id="studentid"  autocomplete="off"  required />

                          </div>

                          <button type="submit" name="report" id="submit" class="btn btn-info">
                              Generate 
                          </button>

                    </form>
                </div>
            </div>
        </div>
        <div class="row">
            <div class="col-md-12">
                <!-- Advanced Tables -->
                <div class="panel panel-default">
                    <div class="panel-heading">
                        Issued Documents
                    </div>
                    <div class="panel-body">
                        <div class="table-responsive">
                            <table class="table table-striped table-bordered table-hover" id="dataTables-example">
                                <thead>
                                    <tr>
                                        <th>#</th>
                                        <th>Employee Name</th>
                                        <th>Document Name</th>
                                        <th>Reference Number</th>
                                        <th>Issued Date</th>
                                        <th>STATUS</th>        
                                    </tr>
                                </thead>
                                <tbody>
                                    <?php 

                                    if($query->rowCount() > 0)
                                    {
                                        foreach($results as $result)
                                        {                         

                                            if(isset($_POST['report']))
                                            {

                                                $studentid=strtoupper($_POST['studentid']);
                                                $sql = "SELECT tblstudents.FullName,tblbooks.BookName,tblbooks.ISBNNumber,tblissuedbookdetails.IssuesDate,tblissuedbookdetails.RetrunStatus,tblissuedbookdetails.id as rid from  tblissuedbookdetails join tblstudents on tblstudents.StudentId=tblissuedbookdetails.StudentId join tblbooks on tblbooks.id=tblissuedbookdetails.BookId where tblissuedbookdetails.RetrunStatus is NULL and StudentId=:studentid order by tblissuedbookdetails.id desc";
                                                $query = $dbh -> prepare($sql);
                                                $query->execute();
                                                $results=$query->fetchAll(PDO::FETCH_OBJ);

                                    ?>

                                    <tr class="odd gradeX">
                                        <td class="center"><?php echo htmlentities($cnt);?></td>
                                        <td class="center"><?php echo htmlentities($result->FullName);?></td>
                                        <td class="center"><?php echo htmlentities($result->BookName);?></td>
                                        <td class="center"><?php echo htmlentities($result->ISBNNumber);?></td>
                                        <td class="center"><?php echo htmlentities($result->IssuesDate);?></td>
                                        <td class="center">
                                            <?php if($result->RetrunStatus==NULL)
                                            {
                                                echo htmlentities("Not Returned Yet");
                                            } else {
                                                echo htmlentities("Returned");
                                            }
                                            ?>
                                        </td>
                                        <td class="center">
                                        </td>
                                    </tr>
                                    <?php $cnt=$cnt+1;}}} ?>                                      
                                </tbody>
                            </table>
                        </div>    
                    </div>
                </div>
            <!--End Advanced Tables -->
            </div>
        </div>        
    </div>
</div>
<!-- CONTENT-WRAPPER SECTION END-->
<?php include('includes/footer.php');?>
<!-- FOOTER SECTION END-->
<!-- JAVASCRIPT FILES PLACED AT THE BOTTOM TO REDUCE THE LOADING TIME  -->
<!-- CORE JQUERY  -->
<script src="assets/js/jquery-1.10.2.js"></script>
<!-- BOOTSTRAP SCRIPTS  -->
<script src="assets/js/bootstrap.js"></script>
<!-- DATATABLE SCRIPTS  -->
<script src="assets/js/dataTables/jquery.dataTables.js"></script>
<script src="assets/js/dataTables/dataTables.bootstrap.js"></script>
<!-- CUSTOM SCRIPTS  -->
<script src="assets/js/custom.js"></script>

需要在输入字段值中输入studentid 这样,当表单提交时,它就会发布并生成报告。 更新以下行并检查。

<input class="form-control" type="text" name="studentid" id="studentid"  autocomplete="off"  required value="<?php echo strtoupper($_POST['studentid']); ?>" />

暂无
暂无

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

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