Statement/Penyataan Require, Include, Require_Once, dan Include_Once

 


Source Code index.php

 <?php

require 'alert.php';

  ?>

 <!DOCTYPE html>
 <html>
 <head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title></title>
 </head>
 <body>
  <form method="POST">
  <label>Nama Lengkap :</label>
  <input type="text" name="nama">
  <br>
  <label>Nomor Telepon :</label>
  <input type="number" name="nomor">
  <br>
  <label>Masukkan Email :</label>
  <input type="email" name="email">
  <br>
  <label> Nama Bapak</label>
  <input type=" text " name="nama2">
  <br>
  <input type="submit" name="submit">
  </form>

  <br>

  <?php
  require 'home.php';
  ?>


 </body>
 </html>

Output :




Source Code home.php

<?php 

if (isset($_POST['submit'])) {
    echo $_POST['nama'];
    echo "<br>";
    echo $_POST['nomor'];
    echo "<br>";
    echo $_POST['email'];
    echo  "<br>";
    echo $_POST ['nama2'];
}

 ?>

Output :




Source Code alert.php

<?php

if (isset($_POST['submit'])) {
echo "
<script>
alert('Terima Kasih Sudah Mengisi');
</script>
";
}

 ?>


Output :


Output Keseluruhan :






Komentar

Postingan populer dari blog ini

Membuat Tampilan Seperti Telegram Dengan HTML & CSS