Add the main admin, dosen, mahasiswa, API, and service code needed to run the core legacy application with configurable upload storage.
10 lines
264 B
PHP
10 lines
264 B
PHP
<?php
|
|
$host = getenv('DB_HOST') ?: 'localhost';
|
|
$user = getenv('DB_USER') ?: 'k1383423_spota';
|
|
$pass = getenv('DB_PASSWORD') ?: 'adminspota99';
|
|
$db = getenv('SERVICE_DB_NAME') ?: 'k1383423_spotauntan';
|
|
|
|
mysql_connect($host, $user, $pass);
|
|
mysql_select_db($db);
|
|
?>
|