hjkhhrterwefdgdfgdfgdfgdgdfgdfgdsvstertrt
bnmbertsdfsdfgdfgdfgfffdgdfgdfgrtdfg
/
home
/
u254050281
/
domains
/
indiannadarcouncil.in
/
public_html
/
apanel
/
Upload FileeE
HOME
<?php session_start(); if(!isset($_SESSION['loginid']) && !isset($_SESSION['UserName'])){ header("Location:index.php"); } include("leftmenu.php"); include("db.php"); ?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-sm-6"> <h1>Donation</h1> </div> <div class="col-sm-6"> <ol class="breadcrumb float-sm-right"> <li class="breadcrumb-item"><a href="dashboard.php">Home</a></li> <li class="breadcrumb-item active">Donation List</li> </ol> </div> </div> </div><!-- /.container-fluid --> </section> <!-- Main content --> <section class="content"> <div class="container-fluid"> <div class="row"> <div class="col-12"> <!-- /.card --> <div class="card"> <div class="card-header"> <h3 class="card-title">Donation Lists</h3> </div> <!-- /.card-header --> <div class="card-body"> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th>S.No</th> <th>Name</th> <th>Emailid</th> <th>Mobile No</th> <th>Address</th> <th>Amount</th> </tr> </thead> <tbody> <?php $i=1; $sql="SELECT * FROM donates WHERE status=1 ORDER BY id DESC"; $res=mysqli_query($db,$sql); while($rec=mysqli_fetch_assoc($res)){ ?> <tr> <td><?php echo $i; ?></td> <td><?php echo $rec['name'];?></td> <td><?php echo $rec['emailid'];?></td> <td><?php echo $rec['mobileno'];?></td> <td><?php echo $rec['address'];?></td> <td><?php echo $rec['amount'];?></td> <?php $i++; } ?> </tbody> <tfoot> <tr> <th>S.No</th> <th>Name</th> <th>Emailid</th> <th>Mobile No</th> <th>Address</th> <th>Amount</th> </tr> </tfoot> </table> </div> <!-- /.card-body --> </div> <!-- /.card --> </div> <!-- /.col --> </div> <!-- /.row --> </div> <!-- /.container-fluid --> </section> <!-- /.content --> </div> <!-- /.content-wrapper --> <!-- /.control-sidebar --> </div> <!-- ./wrapper --> <!-- jQuery --> <?php include("footer.php"); ?>