Codice: Seleziona tutto
//CONTEGGIO DEL NUMERO DEGLI ARGOMENTI (Topics)
$tot = $this->db->sql_query("SELECT t.forum_id, t.topic_id, count(t.topic_id) AS total
FROM ". TOPICS_TABLE." t
WHERE t.forum_id IN($where_list)
AND t.topic_moved_id = 0
AND t.topic_last_post_time > $data_post
ORDER BY t.topic_id");
$row_tot = $this->db->sql_fetchrow($tot);
//####################################################
$total_topics = $row_tot['total']; // totale dei topics selezionati
Visto che il controllo viene fatto solo sulla tabella "topics" proverei a togliere il riferimento "t" della tabella, in questo modo:
Codice: Seleziona tutto
//CONTEGGIO DEL NUMERO DEGLI ARGOMENTI (Topics)
$tot = $this->db->sql_query("SELECT forum_id, topic_id, count(topic_id) AS total
FROM ". TOPICS_TABLE."
WHERE forum_id IN($where_list)
AND topic_moved_id = 0
AND topic_last_post_time > $data_post
ORDER BY topic_id");
$row_tot = $this->db->sql_fetchrow($tot);
//####################################################
$total_topics = $row_tot['total']; // totale dei topics selezionati