init
This commit is contained in:
commit
c128fd5032
12 changed files with 166 additions and 0 deletions
13
config/connection.php
Normal file
13
config/connection.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
$servername = $_ENV['DB_SERVER_NAME'];
|
||||
$port = (int)$_ENV['DB_PORT'];
|
||||
$username = $_ENV['DB_USERNAME'];
|
||||
$password = $_ENV['DB_PASSWORD'];
|
||||
$dbname = $_ENV['DB_DATABASE_NAME'];
|
||||
|
||||
// $servername = "127.0.0.1";
|
||||
// $port = 3306;
|
||||
// $username = "root";
|
||||
// $password = "";
|
||||
// $dbname = "geometrydash";
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue