Guest User

CRUD Mysqli detail.php

a guest
May 25th, 2018
4,954
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.45 KB | None | 0 0
  1. <html>
  2. <title>Aplikasi CRUD Sederhana</title>
  3. <head>
  4. <link rel="stylesheet" href="style/bootstrap.min.css" />
  5. </head>
  6. <body>
  7.  
  8.  
  9. <?php
  10.     include"koneksi.php";
  11.     $no = 1;
  12.     $data = mysqli_query ($koneksi, " select
  13.                                             id_mahasiswa,
  14.                                             nama,
  15.                                             jenis_kelamin,
  16.                                             telepon,
  17.                                             alamat
  18.                                       from
  19.                                       mahasiswa
  20.                                       where id_mahasiswa = $_GET[id]");
  21.     $row = mysqli_fetch_array ($data);
  22.    
  23. ?>
  24. <div class="container" style="margin-top:8%">
  25.     <div class="row">
  26.         <div class="col-md-8 col-md-offset-2">
  27.             <p>
  28.                 <center>
  29.                     <h2>Aplikasi Crud Sederhana</h2>
  30.                     Oleh : <a href="https://www.facebook.com.pendeta.mokong" target="_blank">Rully Studio</a>
  31.                 </center>
  32.             </p>
  33.             <br>
  34.             <p>
  35.                 <a class="btn btn-success" href="index.php">Kembali</a>
  36.             </p>
  37.             <table class="table table-stripped">
  38.                 <tr>
  39.                     <td style="width:10%;">
  40.                         Nama
  41.                     </td>
  42.                     <td>
  43.                         : <?php echo $row['nama']; ?>
  44.                     </td>
  45.                 </tr>
  46.                 <tr>                   
  47.                     <td>
  48.                         Telepon
  49.                     </td>
  50.                     <td>
  51.                         : <?php echo $row['telepon']; ?>
  52.                     </td>
  53.                 </tr>
  54.                 <tr>       
  55.                     <td>
  56.                         Alamat
  57.                     </td>
  58.                     <td>
  59.                         : <?php echo $row['alamat']; ?>
  60.                     </td>
  61.                 </tr>
  62.             </table>
  63.         </div>
  64.     </div>
  65.     <p>
  66.     <center>Copyright @ 2018 by : <a href="https://www.facebook.com.pendeta.mokong" target="_blank">Rully Studio</a> All rights reserved.</center>
  67.     </p>
  68. </div>
  69. </body>
  70. </html>
Add Comment
Please, Sign In to add comment