Advertisement
Rofihimam

Untitled

Sep 23rd, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.96 KB | None | 0 0
  1. <?php
  2.     $penulis = $_POST['penulis'];
  3.     $twp = $_POST['twp'];
  4.     $judulBerita = $_POST['judulBerita'];
  5.     $isi = $_POST['isi'];;
  6. ?>
  7.  
  8. <title>View Post</title>
  9. <link href="https://fonts.googleapis.com/css?family=Bree+Serif&display=swap" rel="stylesheet">
  10. <link rel="stylesheet" type="text/css" href="studi2.css">
  11.  
  12. <table class="hasil" align="center">
  13.     <tr>
  14.         <th width="200px">
  15.             View Post
  16.         </th>
  17.     </tr>
  18. </table>
  19. <br>
  20. <table>
  21.     <tr>
  22.         <td width="230px">
  23.             Penulis
  24.         </td>
  25.         <td width="10px">:</td>
  26.         <td>
  27.             <?php
  28.                 echo $penulis;
  29.             ?>
  30.         </td>
  31.     </tr>
  32.     <tr>
  33.         <td>
  34.             Tanggal dan Waktu Post
  35.         </td>
  36.         <td>:</td>
  37.         <td>
  38.             <?php
  39.                 echo $twp;
  40.             ?>
  41.         </td>
  42.     </tr>
  43.     <tr>
  44.         <td class="batas" colspan="3"></td>
  45.     </tr>
  46.     <tr>
  47.         <td colspan="3" height="10px"></td>
  48.     </tr>
  49.     <tr>
  50.         <th colspan="3">
  51.             <?php
  52.                 echo $judulBerita;
  53.             ?>
  54.         </th>
  55.     </tr>
  56.     <tr>
  57.         <td colspan="3">
  58.             <?php
  59.                 echo $isi;
  60.             ?>
  61.         </td>
  62.     </tr>
  63. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement