×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: PHP
Posted by: Gábor Papp
Added: Apr 24, 2021 4:45 AM
Views: 3997
Tags: no tags
  1. if ($_GET['webteszt']=='igen') { // https://domain.hu/&webteszt=igen
  2.     setcookie('webteszt','igen', time()+86400 ,"/"); // 86400 = 1 nap
  3.     header("Location: /"); exit;
  4. }
  5. if ($_COOKIE['webteszt']!='igen') { echo 'Fejlesztés alatt!'; exit; }