Advertisement
Guest User

tampil.php

a guest
Jul 22nd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.00 KB | None | 0 0
  1. <?php
  2. include "koneksi.php"; //memanggil file koneksi.php
  3. ?>
  4. <h3>::DATA MAHASISWA::</h3>
  5. <a href="insert.php">[+]Tambah</a> <!---link untuk menambahkan data--->
  6. <table border="2">
  7.     <tr><th>No</th><th>NPM</th><th>NAMA</th><th>ALAMAT</th><th>AKSI</th></tr>
  8.         <?php
  9.         $query=mysql_query("select * from mahasiswa"); //Query database untuk menampilan data
  10.         $no=1; //Variable untuk membuat nomor urut secara otomatis
  11.         while($tampil = mysql_fetch_array($query)) //Perulangan While untuk menampilan data
  12.         {
  13.         ?>
  14.     <tr>
  15.         <td><?php echo $no++; //nomor urut otomaris ?></td>
  16.         <td><?php echo $tampil['npm']; //menampikan field npm ?></td>
  17.         <td><?php echo $tampil['nama']; //menampikan field nama ?></td>
  18.         <td><?php echo $tampil['alamat']; //menampikan field alamat ?></td>
  19.         <td><a href="edit.php?npm=<?php echo $tampil['npm'];?>">EDIT</a> || <!---link untuk edit data--->
  20.         <a href="hapus.php?npm=<?php echo $tampil['npm'];?>">HAPUS</a></td> <!---link untuk hapus data--->
  21.     </tr>
  22. <?php  
  23.         }
  24. ?>
  25. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement