It took me 2 hours to understand this and finally i got to work

...
One Suggestion...
under poll
PHP Code:
//ENABLE POLL TO BE CREATED - 1 = yes, 0 = no
$formpoll = "1";
$polloption[1] = "Yes";
$polloption[2] = "No";
$polloption[3] = "Maybe";
//Make poll public - 1 = yes, 0 = no
$pollpublic = "1";
Where is the Question? Well i found it down towards the bottom $question...
Perhaps you should rename it to $pollquestion to be the question to be somewhat like this...
PHP Code:
//ENABLE POLL TO BE CREATED - 1 = yes, 0 = no
$formpoll = "1";
$pollquestion = "Do you think Abe is Awesome?";
$polloption[1] = "Yes";
$polloption[2] = "No";
$polloption[3] = "Maybe";
//Make poll public - 1 = yes, 0 = no
$pollpublic = "1";
oh yeah... and I LOVE IT thanks!