1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php /* InstaDisc Server - A Four Island Project */ if (!file_exists('config.php')) { header('Location: install.php'); exit; } include('config.php'); mysql_connect($dbhost, $dbuser, $dbpass); mysql_select_db($dbname); ?>