Show last 5 Thread on web page ! - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: Extensions (https://community.mybb.com/forum-201.html) +--- Forum: Plugins (https://community.mybb.com/forum-73.html) +---- Forum: Plugin Requests (https://community.mybb.com/forum-65.html) +---- Thread: Show last 5 Thread on web page ! (/thread-24250.html) |
Show last 5 Thread on web page ! - babaroga - 2007-09-24 Hi, can anybody tell me how to display last 5 thread on my web page, but I need to subject be short max 18 characters like: - What is your opini ... - How look your boyf ... ETC RE: Show last 5 Thread on web page ! - goughy000 - 2007-09-25 do you know any PHP? basically all you need to do is do an SQL select from mybb threads, order by post date descending and limit 5. then you can just use substr to shorten the lengths of the titles.
fill in the variables and its the most basic form of what you want. edit as you please. i might have made a few errors while coding and is not tested. |