$PollAnswers = "<<>>option1<<>>option2<<>>option3";
$Options = split("<<>>", $PollAnswers);
foreach ($Options as $option) {
$result = mysql_query ("INSERT INTO poll_options (`AnswerID`, `PollID`,`PollAnser`) Values ('', '$PollID','$option')");
}
Can somoene tell me what is wrong here, i'm calling this as part of a webservice and the only error i get is that's it's not well formed XML so there is a error here somewhere.