* Sunda Cyber Army 2k17 *
Indonesia Defacer ~
<?php
session_start();
// session_destroy();
$_SESSION["loggedin"] = "no";
if(empty($_SESSION["counter"])) {
$_SESSION["counter"] = 1;
} else {
$_SESSION["counter"]++;
}
/*
$_SESSION["username"] = "patrick";
$_SESSION["favcolor"] = "teal";
*
*/
print_r($_SESSION);
?>
<style>
#counter {
width: 100px; height: 100px;
background-color: lightsteelblue;
color: steelblue;
font-size: 24pt;
text-align: center;
position: fixed;
bottom: 0px; right: 0px;
line-height: 100px;
}
</style>
<div id="counter">
<?= $_SESSION["counter"] ?>
</div>