Try this
jsell:
PHP Code:
// reco hack
$recodata=$DB_site->query("SELECT reco FROM recodata WHERE threadid='$threadid'");
if ($recodata[reco]==1) {
eval("\$reco= \"".gettemplate("reco_yes")."\";");
} else {
eval("\$reco= \"".gettemplate("reco_no")."\";");
}
//end add reco hack
Youre problem was that you were not getting the values of the query into an array. Whenever you create a array from a query, you must put it in
$array[element] form. "element" is usually the name of the column selected in the array. You had a number of small syntax errors in the code.
Also, because this is getting values of many threads, you need to put the code in a while loop, and fetch or extract the array. This while loop has already been made in
forumdisplay.php ofcourse.
So in
forumdisplay.php, find:
PHP Code:
while ($thread=$DB_site->fetch_array($threads)) { // and $counter++<$perpage) {
And below it place your code.
Try the above code, I hope it works since I'm not all that sure what you are doing.