Using v1.9.2 I've added two custom labels to the Form Fields (see attached image). I've been able to add these to the Advanced Search but cannot get the variables that are in the database to populate the dropdown menu in the Advanced Search (i.e. if I've entered Company A, Company B and Company C these need to populate the drop down menu). See second image for the Advanced Search.I assume there is a variable assigned to the variable column where I added 'company' and 'site' in the Form Fields, that the database doesn't actually use my variable naming.In order to get the fields on the Advanced Search I edited the tickets.inc.php file, copying one of the existing fieldsets and replacing some of the keywords.I copied this:        <fieldset>            <label for="topicId">Help Topic:</label>            <select id="topicId" name="topicId">                <option value="" selected >&mdash; All Help Topics &mdash;</option>                <?php                if($topics=Topic:()) {                    foreach($topics as $id =>$name)                        echo sprintf('<option value="%d" >%s</option>', $id, $name);                }                ?>            </select>        </fieldset>and made it into this:   <fieldset>            <label for="topicId">Company</label>            <select id="topicId" name="topicId">                <option value="" selected >&mdash; Select Company &mdash;</option>                <?php                if($topics=Topic:()) {                    foreach($topics as $id =>$name)                        echo sprintf('<option value="%d" >%s</option>', $id, $name);                }                ?>            </select>        </fieldset>Any thoughts on how to get this functioning?Thank you!

Write a Reply...