hello,
I'm trying to do an Integration on my site however it's not working soon as i paste the 'Reason/Topic' drop down menu code in open.php (include/client/open.inc.php) its blank? Just says select.. and all the other things are missing however if i remove:
<option value="" selected >select..</option>
<?
$services= db_query('SELECT topic_id,topic FROM '.help_topic.' WHERE isactive=1 ORDER BY topic');
if($services && db_num_rows($services)) {
while (list($topicId,$topic) = db_fetch_row($services)){
$selected = ($info==$topicId)?'selected':''; ?>
<option value="<?=$topicId?>"<?=$selected?>><?=$topic?></option>
<?
}
}else{?>
<option value="0" >General Inquiry</option>
<?}?>
code it works fine, what could be wrong? works fine on my other domain same server and everything? :
UPDATE: never mind fixed lol!
Cheers.