Take a Poll
Where do you stand with your digital photography?
Let us know how digital photography impacts your busy life. Poll results will help us serve you better by addressing the issues that are important to you.
connect();
$php_poll = new plist();
/* poll */
$php_poll->set_template_set("custom041107");
$php_poll->set_max_bar_length(125);
$php_poll->set_max_bar_height(10);
if (isset($HTTP_GET_VARS['poll_id'])) {
echo $php_poll->poll_process($HTTP_GET_VARS['poll_id']);
} else {
echo $php_poll->poll_process("random");
}
echo "All polls";
/* poll list */
$php_poll->set_template("poll_list");
$php_poll->set_polls_per_page(10);
$php_poll->set_date_format("m/d/Y");
echo $php_poll->view_poll_list();
echo $php_poll->get_list_pages();
?>
|