View file guestbook/inc/config.inc.php

File size: 2Kb
<?php
/*
 * $RCSfile: config.inc.php,v1 $
 *
 * Wap-GuestBook - a wap based guestbook
 * Copyright (C) 2004-2005 Chinmay N. Muranjan
 *
 * This program 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.
 *
 * This program 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 this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

$host = 'localhost';     // Hostname of the MySQL server,in most cases it is 'localhost'.

$user = 'root';          // Database Username.

$pass = '421201';       // Database password.

$database = 'cmttd_guestbook'; // Database name.

$timezone = +8.2333;        // Difference between Server time and your Local time,strictly in hours,read Install.TXT for more details.

$home = "guestbook.php";         // Enter VALID URL of your 'Home' page.

$my_email = "[email protected]";  // Enter your email address here.

// Do not change anything below this line unless you know what is going to be change.

$order = 'DESC'; // Order in which results to be displayed.

$limit = '6'; // No. of results displayed on each page.

$table = 'guestbook';   // Table name to be used within selected database,do not modify unless you know what is you are changing.

$sign = "guestbook.php"; // Enter VALID URL of your 'Sign In' page.

$post = "post.php";      // Enter VALID URL of your 'Post' page.

$show = "result.wml";    // Enter VALID URL of your 'View Guestbook' page.

$show_inc = "result.php";  // Enter VALID URL of your 'result.inc.php' file
?>