in reply to Break HTML table output into two or three columns
Do you want to change it both for when the quiz is set up i.e. on the admin page AND on the page the student sees ?.That would be here
pojANS: # line 2649 foreach $ans (@ans){ $ans =~ s/^\s+//g; $ans =~ s/\s+$//g; $ans2 = &repipe($ans); if($ans ne "" && $ans2 =~ /^%SAQ%/){ print "<input type=text name=$num value=\"$data{$num}\"><br>\n"; last ANS; } elsif($ans ne "" && $ans2 =~ /^%SAT%/){ print "<textarea name=$num rows=5 cols=40>$data{$num}</textarea>< +br>\n"; last ANS } elsif($ans ne "") { if($esc_num eq $ans){ $ck = " CHECKED";} else{ $ck = ""; } print "<input type=radio name=$num value=\"$ans\"$ck>$ans2<br>\n"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Break HTML table output into two or three columns
by Anonymous Monk on Feb 14, 2017 at 14:30 UTC | |
by poj (Abbot) on Feb 14, 2017 at 17:25 UTC | |
by Jagtig (Initiate) on Feb 14, 2017 at 21:14 UTC | |
by haukex (Archbishop) on Feb 14, 2017 at 21:33 UTC | |
by Jagtig (Initiate) on Feb 15, 2017 at 14:13 UTC | |
by Anonymous Monk on Feb 14, 2017 at 21:01 UTC | |
by LanX (Saint) on Feb 14, 2017 at 15:13 UTC | |
by Anonymous Monk on Feb 14, 2017 at 21:03 UTC | |
by LanX (Saint) on Feb 14, 2017 at 23:07 UTC |