processcomment.php 3.42 KB
Newer Older
1 2 3
<?php
	require_once("koneksi.php");
    include 'header.php';
4 5 6 7 8 9 10 11 12 13 14

   	$per_hal		= 10;
	$jumlah_record	= mysqli_query($koneksi, "SELECT * FROM t_komentar");
	$no 			= 1;
	$jum 			= mysqli_num_rows($jumlah_record);
	$halaman 		= ceil($jum / $per_hal);
	$page 			= (isset($_GET['page'])) ? (int)$_GET['page'] : 1;
	$start 			= ($page - 1) * $per_hal;

	global $sql;
	$sql = mysqli_query($koneksi, "SELECT * FROM t_komentar ORDER BY tanggal DESC LIMIT $start, $per_hal"); 
15 16 17 18 19 20 21
?>

	<!-- breadcrumbs -->
		<div class="breadcrumbs">
			<div class="container">
				<ol class="breadcrumb breadcrumb1">
					<li><span><i class="fa fa-sign-in" aria-hidden="true"></i><a href="login.php"> Masuk</a></span></li>
22
					<li class="active">Kelola Data Saran</li>
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
					<?php 
						if(isset($_POST['cari'])){
							$cari 	= $_POST['search'];
							$sql 	= mysqli_query($koneksi, "SELECT * FROM t_komentar WHERE nama_pengirim  LIKE '%$cari%' ORDER BY tanggal");
						}
					?>
					<div class="w3l_search">
						<form action="" method="post">
							<input type="search" name="search" placeholder="Cari Nama Pengirim" required="">
							<button type="submit" class="btn btn-default search" aria-label="Left Align" name="cari">
								<i class="fa fa-search" aria-hidden="true"> </i>
							</button>
							<div class="clearfix"></div>
						</form>
					</div>
38 39 40
				</ol>
			</div>
		</div>
41
	<!-- //breadcrumbs --> 
42
		<div class="col-md-12">
43
			<table class="col-md-3">
44 45
				<tr>
					<br>
46
					<td>Jumlah Saran Masuk</td>		
47 48 49 50 51 52
					<td>: <b><?php echo $jum; ?></b></td>
				</tr>
			</table>
		</div>
	<!-- checkout -->
			<div class="container"><br><br><br>
53
				<h2>Daftar Saran : </h2><br>
54
				<div class="checkout-right">
55
					<table class="timetable_sub table table-bordered table-hover">
56 57
						<thead>
							<tr>
58
								<th>Pengirim</th>
59
								<th>Email</th>
60
								<th>Saran</th>
61 62 63 64 65
								<th>Tanggal</th>
								<th>Opsi</th>
							</tr>
						</thead>
						<?php
66
							while($data = mysqli_fetch_array($sql)) {	
67 68 69
						?>
						<tr class="rem1">
							<td class="invert"><?php echo $data['nama_pengirim']; ?></td>
70
							<td class="invert"><?php echo $data['email']; ?></td>
71 72 73 74
							<td class="invert"><?php echo $data['komentar']; ?></td>
							<td class="invert"><?php echo $data['tanggal']; ?></td>
							<td class="invert">
								<div class="rem">
75
									<div>
76
						                <a onclick="if(confirm('Apakah Anda yakin ingin menghapus data ini ?')){ location.href='deletecomment_process.php?id=<?php echo $data['id_komentar']; ?>' }">
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
						                	<img src="images/close_1.png" />
						                </a>
									</div>
								</div>
							</td>
						</tr>
						<?php
							}
						?>
						<?php
							if(	isset($_SESSION['administrator'])){
								echo '	';
							}
							else {
								echo '
92
									<tr><td colspan="4" align="center" style="background-color:#ffffff"> Data Saran kosong ! </td></tr></table>
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
								';
							}
						?>
					</table>
				</div>
			<nav class="numbering">
				<ul class="pagination paging">
					<li>
						<?php 
							for($page=1;$page<=$halaman;$page++){
								?>
								<li><a href="?page=<?php echo $page ?>"><?php echo $page ?></a></li>
								<?php
							}
						?>
					</li>
					<!--<li>
						<a href="?page=<?php echo $x++ ?>" aria-label="Next">
						<span aria-hidden="true">&raquo;</span>
						</a>
					</li>-->
					<br><br><br>
				</ul>
			</nav>		
		</div>
	<!-- //checkout -->

<?php
	include 'footer.php';
?>