A Simple PHP Poll
Thursday July 20, 2006
There are many ways to create a simple PHP poll. In our tutorial we show you one way you can run your PHP poll, and store user's votes in a MySQL database. We then display the results of the poll with a pie chart drawn using GD Library. We use cookies as a method of controlling vote spamming.


Error: “undefined imagecreate()”
You need to go to your php.ini and uncomment “extension = php_gd2.dll ” expression or calling the following dll
dl(”php_gd2.dll”). This is valid for php 5.
tata…