ImgHost/config/db_config.php

25 lines
621 B
PHP

<?php
/*********** SQL CONFIGURATION ***********/
/** Ensure you have the correct username **/
/** and password for your SQL server. **/
/** **/
/** If you plan on running multiple **/
/** instances of this program, you will **/
/** need to select a different 'dbname' **/
/** and/or 'tablename' for each instance. **/
// Connection Settings
$sqlServer = "127.0.0.1";
$sqlUsername = "username";
$sqlPassword = "password";
// Database Settings
$dbname = "imghost_data";
$tablename = "images";
$settingstable = "settings";
$authtable = "auth";
?>