This is the PHPCentral Poll.  The following steps will install the poll script:

1.) Unzip the files using "Winzip" or whatever file compression software you have.

2.) Open up poll.php.  Edit the $folder variable, so it matches the folder where the poll files are.

3.) Open up pollarchive.php.  Edit the $folder variable as well, to match the correct folder the files are in.

4.) Upload the folder "poll" or whatever folder you named it to your webserver.

5.) Point your browser to: http://www.yourdomain.com/poll/install.php

6.) Follow all the steps on install.php to install the tables and an admin.

7.) When done, delete the install.php, and locate the admin page (admin.php), to create a new poll.

8.) To include the poll on your page, you can do this:

<?php
include("poll/poll.php");
?>

* Please note *
You must make sure that the folder path in the include() statement is correct.
I would suggest if you put the poll on a page on the root, where your homepage
(index.php) is, then you can just say the next folder up, "poll", has the file
poll.php, so include that, and there's the poll.

You can select the poll either by their start/end dates, or by poll ID.  If you wish
to select it by poll ID, then you need to do this:

<?php
$pollid = "2";
include("poll/poll.php");
?>

Where you set $pollid to be the value that you want to show the poll.

If you have any questions on this poll, please email me at Coopercentral@gmail.com,
or go on my website, and go to the ticket system, where you may post a question:

http://www.phpcentral.org/ticket/index.php

Thanks for using the PHPCentral.org Poll Script!!