<?
#########################################################
# Simple Poll                                           #
#########################################################
#                                                       #
# Author: CodeMunkyX                                    #
#                                                       #
# This script and all included functions, images,       #
# and documentation are copyright 2003                  #
# free-php.net (http://free-php.net) unless             #
# otherwise stated in the module.                       #
#                                                       #
# Any copying, distribution, modification with          #
# intent to distribute as new code will result          #
# in immediate loss of your rights to use this          #
# program as well as possible legal action.             #
#                                                       #
#########################################################

// change to match your server's configuration
define(hostname,"localhost");  // mysql server host name
define(dbname,"dbnamehere");   // mysql database name
define(username,"mysqlusernamehere"); // mysql user name
define(password,"mysqlpasswordhere"); // mysql password

// directory where templates are located (must end foward slash)
define(templatedir,"/home/www/codemunkyx/www/www.free-php.net/htdocs/demo/SimplePoll/templates/");

// url to the script main directory (must end foward slash)
define(simplepollurl,"http://www.free-php.net/demo/SimplePoll/");
?>