Opinions of Peter Belmont
Speaking Truth to Power
 
.
.
 

Detect if cookies are enabled in PHP scripts

by Peter A. Belmont / 2014-01-06
© 2014 Peter Belmont


RSS

Recent Essays (All Topics)
 
•(12/23) How did we get to October 7th?
•(11/23) Our Political Habits Are Ending The Human Race
•(10/23) Sketch of Israel-Palestine History
•(10/23) Whoever controls the discourse controls emotional reactions to reality
•(08/23) Russia On Trial
•(01/23) The Purpose of "Conservatism"
•(10/22) The project of returning the earth to the cockroaches couldn't be in better hands!
•(05/22) Abortion, The Constitution, And The Supreme Court
•(03/22) The Problem of Climate Change Framing or Discourse or Understanding
•(06/21) Israel-Palestine: If not apartheid, then what?
Many web-pages are coded as PHP scripts which run on the web-server and produce HTML text as output. It is this HTML text which is transmitted over the internet to the user’s browser.

It is often important for the PHP script to discover (detect) whether or not the user-browser has COOKIES ENABLED.

This is very easy to determine in PHP.

Let us assume your script is a singlet (i.e., that it consists of a single php script) named: myprog.php.

Rename myprog.php as myprog2.php. Create a new myprog.php and edit these scripts as follows:

myprog.php:

<?php
setcookie(“testcookie”,’123’);
header(“Location: myprog2.php”);
die();
?>

myprog2.php:
<?php
if($_COOKIE[’testcookie’]<>’123’)
{print(“THIS PROGRAM REQUIRES THAT COOKIES BE ENABLED.”); die();}

etc etc etc.





Comments:

Submit a comment, subject to review:

    Screen Name (Required)
    Commenter's Email (Required)
    Commenter's Blog (Optional)
     

      goackaxptf
      1234567890

From the preceding TOP string, select as the Verification Code,
fi5rst through si2xth letters
(using the BOTTOM string for reference) and enter it in the slot below
    Verification Code (Required)
  Comment
 
 


123pab.com | Top
©2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 www.123pab.com