0) { return true; } else { return false; } } function get_item($myquery, $item_name) { $myresult = mysql_query($myquery) or die("query failed " . mysql_error()); if ( check_empty($myresult) ) { $myrow = mysql_fetch_assoc($myresult); $myitem = $myrow[$item_name]; mysql_free_result($myresult); if ($myitem) { return $myitem; } else { return " "; } } else { return "to be updated"; } } /* mytopic can be Liverpool, Daydream, Haydoc, Leigh */ function post_text_query($myforum, $mytopic, $mysubject) { $myquery = "select phpbb_posts_text.post_text, phpbb_posts.post_time, phpbb_topics.topic_id "; $myquery .= "from phpbb_posts_text, phpbb_posts, phpbb_topics where "; $myquery .= "(phpbb_posts_text.post_id = phpbb_posts.post_id) "; $myquery .= "and (phpbb_posts.topic_id = phpbb_topics.topic_id) "; $myquery .= "and (phpbb_topics.topic_title = '" .$mytopic ."') "; $myquery .= "and (phpbb_topics.forum_id = " .$myforum .") "; $myquery .= "and (phpbb_posts_text.post_subject = '".$mysubject."') "; $myquery .= "order by phpbb_posts.post_time desc "; return $myquery; } ?>
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||