|
|
|
@ -31,11 +31,9 @@ class ListBoxQuestion extends BoxQuestion
|
|
|
|
|
<label>$content</label>
|
|
|
|
|
<select name='answers[]'>\n";
|
|
|
|
|
|
|
|
|
|
for($i = 0; $i < count($possibleResponses); $i++)
|
|
|
|
|
{
|
|
|
|
|
for ($i = 0; $i < count($possibleResponses); $i++) {
|
|
|
|
|
$categoriesSplit = $id."#".$possibleResponses[$i]."||";
|
|
|
|
|
foreach ($categories[$i] as $category)
|
|
|
|
|
{
|
|
|
|
|
foreach ($categories[$i] as $category) {
|
|
|
|
|
$categoriesSplit.= $category."_";
|
|
|
|
|
}
|
|
|
|
|
$html.= "\t\t\t\t\t<option value='$categoriesSplit'>$possibleResponses[$i]</option>\n";
|
|
|
|
|