What the code does below is it retrieves individual options in a full option type. So for example if $option is A-D, then by using the explode, it will be able to display each individual option to output A B C D.
Now In this example I want A B C D to each have it's own checkbox. But with the code below it is just creating checkbox for A and D, the first and last options when it should do it for A, B, C, D. How can this be done?
function ExpandOptionType($option) {
$options = explode('-', $option);
foreach($options as $indivOption) {
echo '<p><input type="checkbox" name="options[]" id="option-' . $indivOption . '" value="' . $indivOption . '" /><label for="option-' . $indivOption . '">' . $indivOption . '</label></p>';
}
if(count($options) > 1) {
$start = array_shift($options);
$end = array_shift($options);
do {
$options[] = $start;
}while(++$start <= $end);
}
else{
$options = explode(' or ', $option);
}
return implode(" ", $options);
}
$optionhave? – DON Feb 8 at 3:55$options, it outputs thisArray ( [0] => A [1] => D )while print '$option' showsA-D– user1830984 Feb 8 at 4:08$optionisA-Dthen your code will create two checkboxes, one for optionAand one for optionD. After that you change the contents op the$optionsarray, so probably your order is wrong. – Arjan Feb 8 at 7:18