icons, default settings

This commit is contained in:
2015-02-09 11:51:21 -05:00
parent 83481d6123
commit 7097e9c67a
109 changed files with 335 additions and 0 deletions

11
config.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
########## MySql details (Replace with yours) #############
$username = "root"; //mysql username
$password = "AdmiN!04%sui"; //mysql password
$hostname = "localhost"; //hostname
$databasename = "yaptc"; //databasename
//connect to database
$mysqli = new mysqli($hostname, $username, $password, $databasename);
?>