Advertisement
fevzi02

7Lab_index.php

Apr 7th, 2022
809
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.     </head>
  6.     <body>
  7.         <style>
  8.             body{background: #C5D0E6}
  9.             .btn{
  10.                 display: inline-block;
  11.                 color: rgb(4, 4, 4);
  12.                 width: 500px;
  13.                 height: 500px;
  14.                 font-weight: 600;
  15.                 text-decoration: none;
  16.                 user-select: none;
  17.                 padding: .5em 2em;
  18.                 outline: none;
  19.                 border: 4px solid;
  20.                 border-radius: 5px;
  21.                 transition: 0.9s;}
  22.             .btn:hover { background: rgba(255,255,255,.9); }
  23.             .btn:active { background: white; }
  24.         </style>
  25.     </body>
  26. </html>
  27.  
  28. <?php
  29.     header('refresh: 10');
  30.     $html = "<form action='test.php'><button class = 'btn'>Не показывать больше</button></form>";
  31.     if (!isset($_COOKIE['baner_time'])) echo $html;
  32. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement