View Single Post
  #6  
Old 27th Jul 04, 10:09 PM
robinwilson16 robinwilson16 is offline
Administrator
 
Join Date: Jul 2001
Location: UK
Posts: 903
robinwilson16 will become famous soon enoughrobinwilson16 will become famous soon enough
Have modified the query to the new format:

Code:
// ############### HIDE (LOCK) HACK ################### $DB->simple_construct( array( 'select' => 'author_name',            'from'   => 'posts',            'where'  => "topic_id=".$this->topic['tid'],        )      );           $DB->simple_exec();         while ($i = $DB->fetch_row())   {    $allposters[] = $info['author_name'];       } $DB->simple_shutdown_exec(); // ############### HIDE (LOCK) HACK ###################
But something is stopping it from getting the allposters variable
Reply With Quote