mirror of https://github.com/BOINC/boinc.git
9 lines
151 B
PHP
9 lines
151 B
PHP
|
<?php
|
||
|
|
||
|
function bolt_exclusive_choice($choices) {
|
||
|
foreach ($choices as $choice) {
|
||
|
echo "<br><input name=q type=radio> $choice";
|
||
|
}
|
||
|
}
|
||
|
?>
|