Advertisement
Rofihimam

Untitled

Sep 25th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <link href="https://fonts.googleapis.com/css?family=Bree+Serif&display=swap" rel="stylesheet">
  2. <style type="text/css">
  3.     p{
  4.         font-family: 'Bree Serif', serif;
  5.         font-size: 20px;
  6.         color: blue;
  7.     }
  8. </style>
  9.  
  10. <p>
  11.     <?php
  12.         $angka = $_POST['angka'];
  13.         $hasil = ($angka > 0 ? "Bilangan Positif" : "Bilangan Negatif");
  14.  
  15.         echo "$angka adalah $hasil";
  16.     ?>
  17. </p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement