Path : /home/dent/public_html/acad276/ |
Current File : /home/dent/public_html/acad276/counter.php |
<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> <?php session_start(); if(empty($_SESSION["counter"])) { $_SESSION["counter"] = 0; } $_SESSION["counter"] ++; ?> <div id="counter"> <?php echo $_SESSION["counter"]; ?> </div>