<if condition="$show['pmwarning']"><div><strong><phrase 1="$vbphrase[pmpercent_nav_compiled]">$vbphrase[your_pm_box_is_x_full]</phrase></strong></div></if>
$rthread
Show Your Support
mysql> explain Select * From thread order by rand() DESC LIMIT 1 -> ; +----+-------------+--------+------+---------------+------+---------+------+------+---------------------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+-------------+--------+------+---------------+------+---------+------+------+---------------------------------+ | 1 | SIMPLE | thread | ALL | NULL | NULL | NULL | NULL | 6026 | Using temporary; Using filesort | +----+-------------+--------+------+---------------+------+---------+------+------+---------------------------------+ 1 row in set (0.03 sec)
60*60 == 3600 3600*24 == 14400 14400*30 == 432000 1223479602 - 432000 == 1223047602 mysql> explain Select * From thread where dateline >= 1223047602 order by dateline DESC limit 1; +----+-------------+--------+-------+---------------+----------+---------+------+------+-------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+-------------+--------+-------+---------------+----------+---------+------+------+-------------+ | 1 | SIMPLE | thread | range | dateline | dateline | 4 | NULL | 104 | Using where | +----+-------------+--------+-------+---------------+----------+---------+------+------+-------------+ 1 row in set (0.00 sec)