голосование анонимное?
абсолютно

--
-- Структура таблицы `polls`
--
CREATE TABLE `polls` (
`ID_POLL` int(11) NOT NULL auto_increment,
`question` tinytext NOT NULL,
`votingLocked` tinyint(4) NOT NULL default '0',
`votedMemberIDs` text,
`option1` tinytext,
`option2` tinytext,
`option3` tinytext,
`option4` tinytext,
`option5` tinytext,
`option6` tinytext,
`option7` tinytext,
`option8` tinytext,
`votes1` int(11) NOT NULL default '0',
`votes2` int(11) NOT NULL default '0',
`votes3` int(11) NOT NULL default '0',
`votes4` int(11) NOT NULL default '0',
`votes5` int(11) NOT NULL default '0',
`votes6` int(11) NOT NULL default '0',
`votes7` int(11) NOT NULL default '0',
`votes8` int(11) NOT NULL default '0',
PRIMARY KEY (`ID_POLL`)
) TYPE=MyISAM AUTO_INCREMENT=18 ;
--
-- Дамп данных таблицы`
--
INSERT INTO `polls` VALUES (17, Во сколько лет вы начали вести половую жизнь?', 0, '151,123,162,91,97,75,3,137,119,10,17,53,1,29,106,85,168', 'до 14', 'в 14', 'в 15', 'в 16', 'в 17', 'в 18', 'после 18', 'еще не начал(а)', 2, 0, 5, 4, 1, 1, 0, 4);