Advertisement
muhidins

hasil

Oct 17th, 2020
428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 6.84 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Input Nilai Siswa</title>
  7.     <link rel="stylesheet" href="style.css">
  8.     <link rel="icon" href="1.png">
  9. </head>
  10. <body>
  11.     <div style="background-color: brown; ">
  12.         <h1 style="text-align: center;">Belajar Bikin Aplikasi</h1>
  13.    
  14.         <div id="header">
  15.             <a href="index.html"><button>UTAMA</button></a>
  16.             <a href="heading.html"><button>HEADER</button></a>
  17.             <a href="list.html"><button>LIST</button></a>
  18.             <a href="latihan_list.html"><button>LATIHAN LIST</button></a>
  19.             <a href="table.html"><button>TABLE</button></a>
  20.             <a href="form.html"><button>FORM</button></a>
  21.             <a href="inlinecss.html"><button>Inline Css</button></a>
  22.             <a href="internalcss.html"><button>Internal Css</button></a>
  23.             <a href="login.html"><button>LOGIN</button></a>
  24.             <a href="externalcss.html"><button>External CSS</button></a>
  25.             <a href="bootstrap/"><button>Bootstrap</button></a>
  26.     </div></div>
  27.     <div id="isi"><center>
  28.     <table border="1">
  29.     <tr>
  30.             <th rowspan="2">NO</th>
  31.             <th rowspan="2">NAMA</th>
  32.             <th rowspan="2">KELAS</th>
  33.             <th rowspan="2">JENIS KELAMIN</th>
  34.             <th rowspan="2">JURUSAN</th>
  35.             <th colspan="3">NILAI</th>
  36.             <th rowspan="2">KETERANGAN</th>
  37.         </tr>
  38.         <tr>
  39.             <th>Angka</th>
  40.             <th>Predikat</th>
  41.             <th>Point</th>
  42.         </tr>
  43.         <tr>
  44.             <td>1</td>
  45.             <td><?php echo $_POST['nama'] ?></td>
  46.             <td><?php echo $_POST['kelas'] ?></td>
  47.             <td><?php echo $_POST['jeniskelamin'] ?></td>
  48.             <td><?php echo $_POST['jurusan'] ?></td>
  49.             <td><?php echo $_POST['nilai'] ?></td>
  50.             <td><?php
  51.                 if ($_POST['nilai']>= 85 and $_POST['nilai']<=100) {
  52.                     echo "<b style='color: green;>A</b>" ;
  53.                 }
  54.                 elseif ($_POST['nilai']>=80 AND $_POST['nilai']<85) {
  55.                     echo "<b style='color: green;>A-</b>" ;
  56.                 }
  57.                 elseif ($_POST['nilai']>=75 AND $_POST['nilai']<80) {
  58.                     echo "<b style='color: green;>B+</b>" ;
  59.                 }
  60.                 elseif ($_POST['nilai']>=70 AND $_POST['nilai']<75) {
  61.                     echo "<b style='color: green;>B</b>" ;
  62.                 }
  63.                 elseif ($_POST['nilai']>=65 AND $_POST['nilai']<70) {
  64.                     echo "<b style='color: green;>B-</b>" ;
  65.                 }
  66.                 elseif ($_POST['nilai']>=60 AND $_POST['nilai']<65) {
  67.                     echo "<b style='color: green;>C+</b>" ;
  68.                 }
  69.                 elseif ($_POST['nilai']>=55 AND $_POST['nilai']<60) {
  70.                     echo "<b style='color: red;>C</b>" ;
  71.                 }
  72.                 elseif ($_POST['nilai']>=50 AND $_POST['nilai']<55) {
  73.                     echo "<b style='color: red;>C-</b>" ;
  74.                 }
  75.                 elseif ($_POST['nilai']>=40 AND $_POST['nilai']<50) {
  76.                     echo "<b style='color: red;>D</b>" ;
  77.                 }
  78.                 elseif ($_POST['nilai']>=0 AND $_POST['nilai']<40) {
  79.                     echo "<b style='color: red;>E</b>" ;
  80.                 }
  81.                 else {
  82.                     echo "Nilai tidak di Kenal";
  83.                 }
  84.                 ?>
  85.             </td>
  86.              <td><?php
  87.                 if ($_POST['nilai']>= 85 and $_POST['nilai']<=100) {
  88.                     echo "<b style='color: green;>4.0</b>" ;
  89.                 }
  90.                 elseif ($_POST['nilai']>=80 AND $_POST['nilai']<85) {
  91.                     echo "<b style='color: green;>3.7</b>" ;
  92.                 }
  93.                 elseif ($_POST['nilai']>=75 AND $_POST['nilai']<80) {
  94.                     echo "<b style='color: green;>3.3</b>" ;
  95.                 }
  96.                 elseif ($_POST['nilai']>=70 AND $_POST['nilai']<75) {
  97.                     echo "<b style='color: green;>3.0</b>" ;
  98.                 }
  99.                 elseif ($_POST['nilai']>=65 AND $_POST['nilai']<70) {
  100.                     echo "<b style='color: green;>2.7</b>" ;
  101.                 }
  102.                 elseif ($_POST['nilai']>=60 AND $_POST['nilai']<65) {
  103.                     echo "<b style='color: green;>2.3</b>" ;
  104.                 }
  105.                 elseif ($_POST['nilai']>=55 AND $_POST['nilai']<60) {
  106.                     echo "<b style='color: red;>2.0</b>" ;
  107.                 }
  108.                 elseif ($_POST['nilai']>=50 AND $_POST['nilai']<55) {
  109.                     echo "<b style='color: red;>1.7</b>" ;
  110.                 }
  111.                 elseif ($_POST['nilai']>=40 AND $_POST['nilai']<50) {
  112.                     echo "<b style='color: red;>1.3</b>" ;
  113.                 }
  114.                 elseif ($_POST['nilai']>=0 AND $_POST['nilai']<40) {
  115.                     echo "<b style='color: red;>1.0</b>" ;
  116.                 }
  117.                 else {
  118.                     echo "######";
  119.                 }
  120.                 ?>
  121.                 </td>
  122.             <td><?php
  123.                 if ($_POST['nilai']>= 85 and $_POST['nilai']<=100) {
  124.                     echo "<b style='color: green;>Lulus</b>" ;
  125.                 }
  126.                 elseif ($_POST['nilai']>=80 AND $_POST['nilai']<85) {
  127.                     echo "<b style='color: green;>Lulus</b>" ;
  128.                 }
  129.                 elseif ($_POST['nilai']>=75 AND $_POST['nilai']<80) {
  130.                     echo "<b style='color: green;>Lulus</b>" ;
  131.                 }
  132.                 elseif ($_POST['nilai']>=70 AND $_POST['nilai']<75) {
  133.                     echo "<b style='color: green;>Lulus</b>" ;
  134.                 }
  135.                 elseif ($_POST['nilai']>=65 AND $_POST['nilai']<70) {
  136.                     echo "<b style='color: green;>Lulus</b>" ;
  137.                 }
  138.                 elseif ($_POST['nilai']>=60 AND $_POST['nilai']<65) {
  139.                     echo "<b style='color: green;>Lulus</b>" ;
  140.                 }
  141.                 elseif ($_POST['nilai']>=55 AND $_POST['nilai']<60) {
  142.                     echo "<b style='color: red;>Tidak Lulus</b>" ;
  143.                 }
  144.                 elseif ($_POST['nilai']>=50 AND $_POST['nilai']<55) {
  145.                     echo "<b style='color: red;>Tidak Lulus</b>" ;
  146.                 }
  147.                 elseif ($_POST['nilai']>=40 AND $_POST['nilai']<50) {
  148.                     echo "<b style='color: red;>Tidak Lulus</b>" ;
  149.                 }
  150.                 elseif ($_POST['nilai']>=0 AND $_POST['nilai']<40) {
  151.                     echo "<b style='color: red;>Tidak Lulus</b>" ;
  152.                 }
  153.                 else {
  154.                     echo "######";
  155.                 }
  156.                 ?></td>
  157.         </tr>
  158.     </table></center>
  159. </body>
  160. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement