39 lines
692 B
PHP
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";
|
|
|
|
}
|
|
|
|
?>
|