Advertisement
Guest User

view.php

a guest
Jul 16th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>Magazine</title>
  4. </head>
  5. <body style="text-align:center">
  6.     <?php
  7.     include 'koneksi.php';
  8.     $id = $_GET['id'];
  9.     $data = mysqli_query($koneksi,"select * from data_artikel where id='$id'");
  10.     while($d = mysqli_fetch_array($data)){
  11.         ?>
  12.     <h2><?php echo $d['judul']?></h2>
  13.     <hr/>
  14.     <img src="<?php echo $d['foto']?>" style="max-height:400px" alt="">
  15.     <hr style="width:750px"/>
  16.     <?php echo $d['deskripsi']?>
  17.     <?php
  18.     }
  19.     ?>
  20.    
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement