ok

Mini Shell

Direktori : /proc/thread-self/root/home2/selectio/www/salemgovtitialumni.in/dashboard/admin/
Upload File :
Current File : //proc/thread-self/root/home2/selectio/www/salemgovtitialumni.in/dashboard/admin/donation.php

<?php require_once('header.php'); ?>

<section class="content-header">
	<div class="content-header-left">
		<h1>View Payment Members Details</h1>
	</div>
	<!--<div class="content-header-right">-->
	<!--	<a href="member.php" class="btn btn-primary btn-sm">Add</a>-->
	<!--</div>-->
</section>

<section class="content">
	<div class="row">
		<div class="col-md-12">
			<div class="box box-info">
				<div class="box-body table-responsive">
					<table id="example1" class="table table-bordered table-striped">
						<thead>
							<tr>
								<th width="30">SL</th>
								<th width="80">Action</th>
								<th>Name</th>
								<th width="100">Mobile No</th>
							    <th>Donation Amount</th>
							    <th>Transaction id</th>
							    <th>Payment Proof</th>
								<th>Payment Status</th>
								<th>Date</th>
								
							</tr>
						</thead>
						<tbody>
							<?php
							$i=0;
							$statement = $pdo->prepare("SELECT * from tbl_membership_payment WHERE type=2");
							$statement->execute();
							$result = $statement->fetchAll(PDO::FETCH_ASSOC);
							foreach ($result as $row) {
								$i++;
								
								if($row['status']==1){
								    $status = '<span class="btn btn-primary btn-xs" > Active </span>';
								}else{
								     $status = '<span class="btn btn-warning btn-xs" > In-Active </span>';
								}
								
								?>
								
                                								
								
								
								<tr>
									<td><?php echo $i; ?></td>
									<td>										
										<a href="paid_member_edit.php?id=<?php echo $row['id']; ?>" class="btn btn-danger btn-xs">Edit</a>
											<a href="#" class="btn btn-danger btn-xs" data-href="donation-delete.php?id=<?php echo $row['id']; ?>" data-toggle="modal" data-target="#confirm-delete">Delete</a> 
									</td>
                                    <td><?php echo $row['name']; ?></td>						
                                    <td><?php echo $row['mobile_no']; ?></td>
                 
                                    <td><span class="btn btn-info btn-xs" ><?php echo $row['amount']; ?></span></td>
									
									<td><?php echo $row['transaction_id']; ?></td>
									<td><a target="_blank" href="https://www.salemgovtitialumni.in/<?= $row['photo'] ?>"  class="btn btn-danger btn-xs"  >View Proof</a></td>
									<td><?php echo $status; ?></td>
									<td style="white-space:nowrap;"><?php echo $row['created_at']; ?></td>
									
									
								</tr>
								<?php
							}
							?>							
						</tbody>
						
						
						
					</table>
					
					
				
					
				</div>
			</div>
		</div>
	</div>


</section>


<div class="modal fade" id="confirm-delete" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
                <h4 class="modal-title" id="myModalLabel">Delete Confirmation</h4>
            </div>
            <div class="modal-body">
                <p>Are you sure want to delete this item?</p>
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
                <a class="btn btn-danger btn-ok">Delete</a>
            </div>
        </div>
    </div>
</div>


<?php require_once('footer.php'); ?>

Zerion Mini Shell 1.0