I have a bit of an easy question which i cant seem to figure out.
I have the following line
$output .= ' <input name="_'.$row->key.'" style="height: 10px; margin: 0;" type="checkbox" id="'.$row->key.'" /> <span style="font-size: 9px; text-transform: lowercase;">'.$row->name.'</span>';
and i need to add the following to it, but they are different format
trim(set_radio("allwork", "1")) == 'checked="checked"' ? true : false
If i do '. and .' before and after the trim section and insert it, it throws errors
Cheers,