Advertisement
gilang05

Menampilkan data

Aug 22nd, 2019
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.66 KB | None | 0 0
  1. <style>
  2. fieldset{
  3.     position: absolute;
  4.     margin-top: 250px;
  5.     margin-left: 550px;
  6.     width: 400px;
  7.     height: 200px;
  8. }
  9. .akun{
  10.     margin-top: 10%;
  11.       margin-right: 5%;
  12. }
  13. </style>
  14. <body>
  15. <fieldset>
  16. <img class="akun" src="account.svg" width="120" align="right">
  17. <?php
  18. if(isset($_POST['namad']))
  19. {
  20.  $namad = $_POST['namad'];
  21.  $namab = $_POST['namab'];
  22.  echo"<H3>BERHASIL MENGINPUTKAN DATA DIRI</H3>";
  23.  echo "Nama : ".$namad ." $namab<br>";
  24. }
  25. if(isset($_POST['email']))
  26. {
  27.  $email = $_POST['email'];
  28.  echo "email : $email<br>";
  29. }
  30. if(isset($_POST['pw']))
  31. {
  32.  $pw = $_POST['pw'];
  33.  echo "email : $pw<br>";
  34. }
  35. ?>
  36. </fieldset>
  37. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement