blob: 39a7ed2fd3498a988376074f86c7288645976c9d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/* InstaDisc Server - A Four Island Project */
include('includes/db.php');
$getconfig = "SELECT * FROM config";
$getconfig2 = mysql_query($getconfig);
$config = mysql_fetch_array($getconfig2);
include('includes/template.php');
include('includes/header.php');
?>
|