- Menu scripts
- Window scripts
- Calendar scripts
- Gallery scripts
- Form widgets
- Tab view scripts
- Table widgets
- Drag and drop
- Folder trees
- Tooltips
- AJAX scripts
- Content Effects

- Misc scripts
- Javascript games
- Chess widgets
- DHTML Suite
- Resources
- cbolson.com
Download AJAX poller script
Licensing
This script is distributed under the LGPL open source license.
Commercial licenses are also available. Some of these licenses also includes personal e-mail support for up to 1 year.
Download script
You can download the entire script from this Zip file.
Configuration
PHP and mySql required
This script requires that you have PHP installed on your server and access to a mySql database.
Files included in package
- ajax-poller.html = Main HTML file. Contains some HTML code and some PHP code. You will find the code for the poller between the comments <!-- START OF POLLER --> and <!-- END OF POLLER -->.
- ajax-poller-cast-vote.php = This file is called by ajax when someone casts a vote. This file updates the database and returns vote results as XML back to ajax-poller.html
- dbConnect.php = File included by ajax-poller and ajax-poller-cast-vote.php. This file connect the scripts to your database
- js/ajax-poller.js = Main Javascript file for this script.
- js/ajax.js = Ajax (SACK library).
- css/ajax-poller.css = Cascading style sheet for the poller
- images/* = images used by the script
- createDbTables.php = Installation file. This file creates the default database tables you need for this script. Just put in connection and data and execute the file in your browser
Installation
This is a step by step guide on how to configure this script
- Modify dbConnect.php. Insert your dbName, username and password. You may have to create a new database.
- Edit createDbTables.php. Insert your dbName, username and password and execute the script in your web browser
- Now, try to open ajax-poller.html in your web browser
Javascript variables
You will find some variables at the top of ajax-poller.js which you could modify:
var serverSideFile = 'ajax-poller-cast-vote-php';
var voteLeftImage = 'images/graph_left_1.gif';
var voteRightImage = 'images/graph_right_1.gif';
var voteCenterImage = 'images/graph_middle_1.gif';
var graphMaxWidth = 120; // It will actually be a little wider than this because of the rounded image at the left and right
var graphMinWidth = 15; // Minimum size of graph
var pollScrollSpeed = 5; // Lower = faster
var useCookiesToRememberCastedVotes = true;
- serverSideFile = Path to the PHP file that is called by ajax.
- voteLeftImage, voteRightImage and voteCenterImage = Path to the graph images
- graphMaxWidth = Max width of graph
- graphMinWidth = Min width of graph
- pollScrollSpeed = Speed of animation. Lower value = faster animation
- useCookiesToRememberCastedVotes = If set to true, use cookie to prevent user from casting more than one vote
Comments
Post your comment
Please wait...



".$inf["pollerTitle"]."
"; // Output poller title $resOptions = mysql_query("select * from poller_option where pollerID='$pollerId' order by pollerOrder") or die(mysql_error()); // Find poll options, i.e. radio buttons while($infOptions = mysql_fetch_array($resOptions)){ if($infOptions["defaultChecked"])$checked=" checked"; else $checked = ""; echo "
".$infOptions["optionText"]."
"; } } ?>
Inside ajax-poller.html change all PHP short tags <? to <?php.
If that doesn't help, change the name of the file to ajax-poller.php
change this line;
$pollerId = 1; // Id of poller : sample db hasnt a poll ided by 3 :)
also here you can find the DEMO and pool script here, http://www.webfreescripts.com/?p=1380
its easy and interesting.
Set a password to your database
1. When I've execute createDbTables.php in my browser it give me this :
"Forbidden
You don't have permission to access /ajax-poll/createDbTables.php on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
"
But i maked the options in mysql manual.
2. When opening the page ajax-poller.php , poll box is empty and in box is just vote button.
why am i do ?
sorry for my english.
Sincerely.
No. if it changing to .php it will be ok.
but i have a problem, it doesn't work with other <form> in page...
1) Change the database user and pass from dbConnect.php and createDbTables.php
2) Change the name of the file ajax-poller.html to ajax-poller.php
3) Change all PHP short tags <? to <?php.
4)change the line $pollerId = 3;// Id of poller
TO
$pollerId = 1;// Id of poller : sample db hasnt a poll ided by 3 :)
Hope this will help! I would appreciate if someone could help me to restrict the voting to one time only (let's say once in a day)
Thankyou
ajax-poller.js line 38
useCookiesToRememberCastedVotes = true;
Very Nice. Thank you Admin
Getting poll results. Please wait...