implement Questtype ?textinput?

This commit is contained in:
coderkun 2014-03-09 14:35:13 +01:00
commit e8c0035418
4 changed files with 176 additions and 0 deletions

View file

@ -0,0 +1,11 @@
<form method="post">
<?php for($i=0; $i<count($text); $i++) : ?>
<?php if($i > 0) : ?>
<input type="text" name="answer-<?=$i?>" value="" />
<?php endif ?>
<?=\hhu\z\Utils::t($text[$i])?>
<?php endfor ?>
<br /><br />
<input type="submit" name="submit" value="<?=_('solve')?>" />
</form>