Hangman via PHP Sessions and MySql
Hangman game is developed in PHP using PHP sessions. It is a single-player game. The game is fully functional. The results are stored in the database.
use git clone command
git clone https://github.com/mtalha91/hangman.git
Create a database and import database files (db.php). Update the database configuration.
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "hangman";
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update the tests as appropriate.