Allow Pop-ups for Cloaking...
Quick settings
Creator and founder of Kermit Web. Finds games, codes, and deploys proxies.
Founder of Oddish AI. Works with AI and finds games. IQ of either 200 or 12.
• Game developers and publishers
• Music artists and composers
• Open source contributors
• ConcernedApe - "Stardew Valley Overture" & "Cloud Country" from Stardew Valley
• Toby Fox - "My Castle Town" from DELTARUNE Chapter 2
• Streaming Music Studios - "Daisy's Circut" from Mario Kart Wii
• Calum Bowen - "The Artist's House" & "Everything's Gonna Be Okay" from Pikuniku
• Mark Sparling - "Beach Buds" from A Short Hike
• Harry Mack - "Ember Valley" from Slime Rancher 2
Built with HTML5, CSS3, and JavaScript
Background video and audio integration
Responsive design for all devices
All games and media are the property of their respective owners. This site is for educational and entertainment purposes.
The following code is a server-side PHP example of a visitor counter. This code cannot run directly in your browser. A live global counter requires a backend server.
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<?php
session_start();
$sesid = session_id();
if(!isset($_COOKIE['coki'])){
setcookie("coki", "$sesid", time()+60);
setcookie("tt", time()+60, time()+60);
}
if(isset($_COOKIE['coki'])){
if(time() > $_COOKIE['tt']){
echo "sss";
setcookie("coki", "", time()-60);
}
if($sesid == $_COOKIE['coki']){
$count = file_get_contents("counter.txt");
$count = trim($count);
$count = $count + 1;
$fl = fopen("counter.txt","w+");
fwrite($fl,$count);
fclose($fl);
setcookie("coki", "Ok", time()+60);
}
}
$count = file_get_contents("counter.txt");
?>
<h1>Website Visitor Counter In PHP</h1>
<br/>
<h2>Visitor Counter : <?php echo $count; ?></h2>
</body>
<html>