20 lines
734 B
PHP
20 lines
734 B
PHP
|
<?php
|
||
|
/**
|
||
|
* This file is for storing your personal information (such as database login).
|
||
|
* These constants will be most likely used in header.php
|
||
|
* for logging in to different internal services.
|
||
|
* It is critical that if you enter your details here,
|
||
|
* you do not commit the changes into any public repository.
|
||
|
* In the original repository [https://github.com/Zeftax/personal-homepage.git]
|
||
|
* this file is set to not track any changes, but it is better to check and
|
||
|
* be safe, than leak your internal logins and have people screwing with
|
||
|
* your database.
|
||
|
*/
|
||
|
|
||
|
// SQL database login info (Place your info here).
|
||
|
define("SQL_HOSTNAME", "");
|
||
|
define("SQL_USERNAME", "");
|
||
|
define("SQL_PASSWORD", "");
|
||
|
define("SQL_DATABASE", "");
|
||
|
?>
|