I again,
I have created a custom question which only the forum title outputs when the form called. That works also. Unfortunately, in the database and the thread just shows "-". Maybe someone can help me with this problem? Here is the code:
HTML Code:
$answer = '<select name="'.$formbit[id].'">';
$thisanswer = $q[$formbit[id]];
$threads =$db->query_read("SELECT title FROM " . TABLE_PREFIX . "forum
WHERE forumid = '$fid'");
while($row = $db->fetch_array($threads)) {
$answer .= '<option value="'.$row[threadid].'"';
if ($row[threadid] == $thisanswer) {
$answer .= 'selected="selected"';
}
$answer .= '>'.$row[title].'</option>';
}
$answer .= '</select>';
regards
MoK