Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Query for latest threads and their URL
Hi,
I would like to make a query for the latest 5 threads for Vanilla.
The threads should be open.
Also, how can I make the friendly URLs for those.
Please help.
I would like to make a query for the latest 5 threads for Vanilla.
The threads should be open.
Also, how can I make the friendly URLs for those.
Please help.
0
Comments
Select ..... Limit 5
Kind of code for it.
Your thoughts!!!
Any ideas about how to do it without going into plugin. Read my comments above.
from frm_discussion
where WhisperUserID = 0
and Active = '1'
and Sink = '0'
ORDER BY DateCreated desc
LIMIT 5[/CODE]