2025-11-24 02:23:51 -05:00

25 lines
582 B
HTML

<?php
if(isset($_POST['score'])){
$score = $_POST['score'];
file_put_contents("scores.txt", "Score: $score\n", FILE_APPEND);
exit();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memory Card Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Memory Card Game</h1>
<div id="game"></div>
<div id="status">
<p>Moves: <span id="moves">0</span></p>
<p>Score: <span id="score">0</span></p>
</div>
<script src="script.js"></script>
</body>
</html>