Hello,
I’m trying to create an select box utilizing the optgroup tag. The select box should list all the parent jobs as the label and the child jobs as the options.
I have the parent jobs listing, but the problem is getting the child jobs to group with the correct parent job.
Parent Jobs
$parent_job_list = get_parent_job_list();
Child Jobs
$child_job_list = get_child_job_list($job_id);
[code]