We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d44b34 commit 846459cCopy full SHA for 846459c
README.md
@@ -6,6 +6,22 @@ To set the project just clone with git:
6
7
git clone https://github.com/LunguGeorgeProgramator/new-php-rpg-hero-game
8
9
+Import data base file hero_game.sql in phpmyadmin:
10
+
11
+ http://localhost/phpmyadmin/db_import.php
12
13
+Change data base conections creditials with yours in php file class database.php
14
15
+ function __construct() {
16
+ $this->conn = false;
17
+ $this->servername = "localhost"; // your sql server name
18
+ $this->username = "root"; // your sql server name
19
+ $this->password = ""; // your sql server password
20
+ $this->dbname = "hero_game";
21
+ $this->connectDB();
22
+ }
23
24
25
Run the game in browser and just click button "next turn".
26
27
How to run test:
0 commit comments