Page Menu
Home
GRNET
Search
Configure Global Search
Log In
Files
F1299735
statistics_form_state.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Nov 19, 12:36 AM
Size
356 B
Mime Type
text/x-php
Expires
Fri, Nov 21, 12:36 AM (1 d, 9 h)
Engine
blob
Format
Raw Data
Handle
294713
Attached To
rDIAS DIAS
statistics_form_state.php
View Options
<?php
$expire
=
time
()+
60
*
60
*
24
*
365
;
// 1 year
if
(!
isset
(
$_COOKIE
[
"statistics_form_state"
])){
setcookie
(
"statistics_form_state"
,
"hidden"
,
$expire
,
"/"
);
}
elseif
(
$_COOKIE
[
"statistics_form_state"
]==
"visible"
){
setcookie
(
"statistics_form_state"
,
"hidden"
,
$expire
,
"/"
);
}
else
{
setcookie
(
"statistics_form_state"
,
"visible"
,
$expire
,
"/"
);
}
?>
Event Timeline
Log In to Comment