Well, I'm not sure, but here are some ideas--
instead of this:
$answer_content = eval("form_answer" & $i);
try this:
$answer_content = "form_answer" . $i;
See, because for what you are doing, you don't really need to use eval for this type of thing. I hope that helps your problem!
NEW:
$i = 0;
while($i < $count) {
$answer_content = "form_answer" . $i;
$sql_insert = "INSERT INTO polla (pollid,answer) VALUES ('$pid','$answer_content')";
$execute_insert = mysql_query($sql_insert);
$i++;
}
OLD:
$i = 0;
while($i < $count) {
$answer_content = eval("form_answer" & $i);
$sql_insert = "INSERT INTO polla (pollid,answer) VALUES ('$pid','$answer_content')";
$execute_insert = mysql_query($sql_insert);
$i++;
}