Advertisement
rasyid03

Untitled

Jun 25th, 2023
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <title>Faris Rasyid | 50421483</title>
  9. </head>
  10.  
  11. <body>
  12. <h1>Cari Lokasi Universitas</h1>
  13. <form action="hasil.php" method="GET">
  14. <fieldset>
  15. <label for="university">Masukkan nama universitas:</label>
  16. <input type="text" id="university" name="university" required><br><br>
  17. </fieldset>
  18.  
  19. <input type="submit" value="Cari Lokasi">
  20. </form>
  21. </body>
  22.  
  23. </html>
  24. //
  25. <?php
  26.  
  27. echo "<h1>Lokasi Universitas</h1>";
  28.  
  29. if ($_SERVER["REQUEST_METHOD"] == "GET") {
  30. $university = $_GET['university'];
  31.  
  32. $lokasi = "";
  33.  
  34. if ($university == "gundar" || $university == "universitas gunadarma") {
  35. $lokasi = "Depok";
  36. } elseif ($university == "ui" || $university == "universitas indonesia") {
  37. $lokasi = "Depok";
  38. } elseif ($university == "gunadarma" || $university == "universitas indonesia") {
  39. $lokasi = "Depok";
  40. } elseif ($university == "itb" || $university == "institut teknologi bandung") {
  41. $lokasi = "Bandung";
  42. } elseif ($university == "undip" || $university == "universitas diponogoro") {
  43. $lokasi = "Semarang";
  44. } elseif ($university == "ugm" || $university == "universitas gajah mada") {
  45. $lokasi = "Yogyakarta";
  46.  
  47. } elseif ($university == "unpas" || $university == "universitas pasundan") {
  48. $lokasi = "Bandung";
  49. } else {
  50. $lokasi = "tidak diketahui";
  51. }
  52. //farisrasyid
  53. if ($lokasi == "Tidak diketahui") {
  54. echo "<p>Lokasi dari $university $lokasi</p>";
  55. } else {
  56. echo "<p>$university berada di $lokasi</p>";
  57. }
  58. }
  59.  
  60.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement