Yeah, I don't actually wanna limit posting, just thread creation.
I think I have it nailed down.
mysql> select dateline,postusername from thread where dateline > UNIX_TIMESTAMP(NOW())-3600 and postusername = 'John-PB2X';
+------------+--------------+
| dateline | postusername |
+------------+--------------+
| 1045231378 | John-PB2X |
| 1045231443 | John-PB2X |
+------------+--------------+
2 rows in set (0.67 sec)
Thats just for some user I noticed was currently posting.
I think I can do something similar to that in the newthread.php and have it work..
|