Sign in
webkit
/
WebKit
/
827d8d85df2265cb42dbb614ee23888d063fb795
/
.
/
LayoutTests
/
http
/
tests
/
loading
/
resourceLoadStatistics
/
resources
/
set-cookie.php
blob: 3339e9b095af11677a76b75e6482dd9f2a1783d1 [
file
] [
log
] [
blame
]
<?
php
setcookie
(
$_GET
[
"name"
],
$_GET
[
"value"
],
(
time
()+
60
*
60
*
24
*
30
),
"/"
);
echo $_GET
[
"message"
]
.
"<br>"
;
?>
<script>
if
(
document
.
location
.
hash
)
{
setTimeout
(
"document.location.href = document.location.hash.substring(1)"
,
10
);
}
</script>