13 lines
303 B
PHP
13 lines
303 B
PHP
<?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";
|
|
?>
|