<?php /****************************************************************************** * This file is part of Yet Another Link Directory. * * * * Yet Another Link Directory is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * Yet Another Link Directory is distributed in the hope that it will be * * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with Yet Another Link Directory; if not, write to the Free Software * * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * ******************************************************************************/ /* MYSQL connection settigs */ $mysql['username'] = ''; // mysql username $mysql['password'] = ''; // mysql password $mysql['db'] = ''; // mysql database name $mysql['host'] = 'localhost'; // mysql hostname (usually localhost) /* MYSQL table settings */ $settings['categories_table'] = 'categories'; //the name of the categories table $settings['links_table'] = 'links'; //the name of the links table $settings['log_table'] = 'log'; //the name of the log table $settings['settings_table'] = 'settings'; // the name of the settings table ?>