Any one know a way to change the "Help Topic:" so if i have different ticket pages.
I can set one to say get only options
1,3,5
set the other to get options
2,4,5
and set the last to get option
1
<tr>
<th>Help Topic:</th>
<td>
<select name="topicId">
<option value="" selected >Select One</option>
<?
$services= db_query('SELECT topic_id,topic FROM '.TOPIC_TABLE.' WHERE isactive=1 ORDER BY topic');
while (list($topicId,$topic) = db_fetch_row($services)){
//$selected = ($info==$topicId)?'selected':'';
$selected = ($topic==$helptopic)?'selected':''; ?>
<option value="<?=$topicId?>"<?=$selected?>><?=$topic?></option>
<?
}?>
</select>
<font class="error">* <?=$errors?></font>
</td>
</tr>
this is the code, i've changed it so it would only display certain ones but when i went to submit a ticket it would blow back the error asking me to select a help topic.