Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Controllo data</title>
  5. <style type="text/css">
  6. p{
  7. text-align: center;
  8. color: green;
  9. font-size: 150px;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <?php
  15. $g=$_GET['giorno'];
  16. $m=$_GET['mese'];
  17. $a=$_GET['anno'];
  18. if(checkdate($m,$g,$a)){
  19. echo "<p>Data corretta</p>";
  20. }else{
  21. echo "<p style=\"color: red;\">Data NON corretta</p>";
  22. }
  23.  
  24. ?>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement