repo.or.cz
/
2ch-be.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit
[2ch-be.git]
/
dev-test
/
mb
/
ur.php
blob
f2f78045c7cdce831b4ad540dd1edef9c9b0a3c0
1
<
?php
2
3
if
(!
isset
(
$_COOKIE
[
'DMDM'
]) && !
isset
(
$_COOKIE
[
'MDMD'
])) {
4
echo
"NG"
;
5
exit
;
6
}
7
include
(
'../encrypt.php'
);
8
$email
=
Decrypt
(
$_COOKIE
[
'DMDM'
],
KEY
);
9
echo
$email
;
10
11
?
>