If you register for free, you will be able to post threads, vote on polls and lots more. If you have problems with the registration or logging in, please contact the administrator.
Trying to only show news items posted in the last 14 days. got no idea why it's not working - no data returned despite there being two rows in the dataset that qualify...
<pre class="ip-ubbcode-code-pre">SELECT news_title, news_body, news_datestamp, phpbb3_users.username AS news_author_name, news_authorFROM tq_news, phpbb3_usersWHERE phpbb3_users.user_id = tq_news.news_author AND DATEDIFF(NOW( ), news_datestamp) < 14ORDER BY news_id DESC</pre>