Advertisement
aantamimmaarif

Nota

Oct 28th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Nota</title>
  5.     <style type="text/css">
  6.     .box {border:1px solid #444;padding:10px;text-align:center;max-width:300px;}
  7.     </style>
  8. </head>
  9. <body>
  10. <div class="box">
  11. <?php
  12. $nourut = @$_POST['nilai'];
  13. $nourut++;
  14. ?>
  15.     <form method="POST">
  16.         <button type="submit" name="submit">GENERATE</button>
  17.         <input type="hidden" name="nilai" value="<?php echo $nourut ?>">
  18.     </form>
  19.     <?php
  20.     if(isset($_POST['submit'])) {
  21.         echo 'N'.date('dmy').'-'.sprintf('%04s', $nourut-1);
  22.     }
  23.     ?>
  24. </div>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement