ID | Project | Category | Submitted / Last Updated |
---|---|---|---|
01280 | UserSpice | ACP Code | 2021-07-16 18:09:22 / 2021-09-06 14:57:52 |
Reported | Dan Hoover | Assigned To | Unassigned |
Priority | none | Reported | 5.3.3 |
Status | closed fixed | Resolution Version and Commit | 5.3.5 |
Summary | Add function for selected='selected' and checked on form inputs | ||
Description |
if(!function_exists('selected')){ function selected($one,$two,$output = "selected='selected'"){ if($one == $two){ echo $output." "; } } } |
isSelected($a->id,1);
replaces
if($a->id == 1){echo "selected='selected'"l}
Optionally takes a third parameter such as
isSelected($a->id,1,"checked");
to output "checked" instead of selected=selected