discourse-legacysite-perl/site/stackreach/models/services/Database.php

39 lines
692 B
PHP
Raw Permalink Normal View History

2024-06-17 12:42:14 +00:00
<?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";
}
?>