Demo 1 | Demo 2 | Demo 3 | Demo 4 | Demo 5 |
<?php
/* Include this before your html code */ include_once "./poll_cookie.php"; ?> <?php /* path */ $poll_path = dirname(__FILE__); require_once $poll_path."/include/config.inc.php"; require_once $poll_path."/include/$POLLDB[class]"; require_once $poll_path."/include/class_poll.php"; require_once $poll_path."/include/class_pollcomment.php"; require_once $poll_path."/include/class_plist.php"; $CLASS["db"] = new polldb_sql; $CLASS["db"]->connect(); $php_poll = new plist(); /* poll */ $php_poll->set_template_set("plain"); $php_poll->set_max_bar_length(125); $php_poll->set_max_bar_height(10); if (isset($_GET['poll_id'])) { echo $php_poll->poll_process($_GET['poll_id']); } else { echo $php_poll->poll_process("random"); } /* poll list */ $php_poll->set_template("poll_list"); $php_poll->set_date_format("m/d/Y"); echo $php_poll->view_poll_list(); echo $php_poll->get_list_pages(); ?> |
|