<?
//***************************************************
// Startpage v1.1 by Matthijs Draijer
//
// Use of this script is free, as long as
// it's not commercial and you don't remove
// my name.
//
//***************************************************
DEFINE(NL, "\n");
$hostname = "localhost"; // The hostname
$username = ""; // The SQL-username
$password = ""; // The SQL-password
$dbName = ""; // The SQL-database
$cfgTableData = 'startpage_data'; // Field-names
$cfgDataID = 'id'; // if you don't change names in 'statt_page.sql'
$cfgDataTitle = 'titel'; // you don't have to change names here
$cfgDataURL = 'url';
$cfgDataVisit = 'last_visit';
$cfgTableLog = 'startpage_log';
$cfgLogPage = 'page_id';
$cfgLogTime = 'time';
$cfgRefreshTime = 30*60; // Refresh time in seconds for the index-page
// if $cfgRefreshTime = 0, the index-page will not be refreshed
$cfgPageTitle = "$_SERVER[SERVER_NAME] - ". date('H:i'); // Title of the script
$cfgSortUse = false; // $cfgSortUse = true sort the links on use
// $cfgSortUse = false sort the links on title
?>