discourse-legacysite-perl/site/stackreach/models/services/Database.php
2024-06-17 22:42:14 +10:00

39 lines
692 B
PHP

<?php
/*
$user = "stackreach";
$pass = "aephie0uKeeZ";
$host = "localhost";
$port = "";
$dbname = "slowtwitch_stackreach";
abstract class Database
{
protected $username = "stackreach";
protected $password = "aephie0uKeeZ";
protected $server = "localhost";
protected $port = "";
protected $databasename = "slowtwitch_stackreach";
}
*/
$user = "stackreach";
$pass = "aephie0uKeeZ";
$host = "192.168.1.10";
$port = "";
$dbname = "stackreach";
abstract class Database
{
protected $username = "stackreach";
protected $password = "aephie0uKeeZ";
protected $server = "192.168.1.10";
protected $port = "";
protected $databasename = "stackreach";
}
?>