Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

visitors browser cookie 1

Status
Not open for further replies.

jebo100

Technical User
May 11, 2007
52
0
0
PH
a simple problem with cookies which i can not find in my manual. :)

how can i tell if visitors browser is accepting cookies or not from within php?


thanks!!!

 
set a cookie and then test for it at subsequent page impressions.

Code:
if (isset($_COOKIE['mycookiename'])){
 $e = '';
} else {
 $e = 'not ';
}
echo "cookie is $e set";
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top