Hey, just wondering if there is a way for me to create my own poll without having the register somewhere (but if there is a way to get a poll with registering and without paying, tell me please!) ?
You can find several example poll scripts at <a href='
http://www.scriptz.com/' target='_blank'>
http://www.scriptz.com/</a>. Some you have to pay for, but there are several free ones as well.
for anyone who knows PHP, youre able to set variables in the web adress by just doing something like:
http://darkforces.mysticsoftware.net/poll.php?vote=$value
or something of that sort?
You can do that, but it has to be a value, i.e.
http://darkforces.mysticsoftware.net/poll.php?vote=3
So in order to get that to work with a variable in your webpage (through a link or submit button, etc.) you need to do something like:
http://darkforces.mysticsoftware.net/poll.php?vote=<?php echo "$value" ?>