Quote:
Originally Posted by LCN2007
Im hoping someone can help me.
I was wondering if there was a way i can list all my forum id numbers with out having to click
everyone and write them down.
Maybe a simple script exist that will make a list.
like 1, 2, 3, 4, 5, 6, 7, etc......
Running 3.7.2
Thanks for you assistance with this.
|
If you can run a mysql query, try these:
1)
Sorted by Forum Number
HTML Code:
SELECT forumid, title FROM forum ORDER BY forumid
2)
Sorted by Forum Title
HTML Code:
SELECT forumid, title FROM forum ORDER BY title
If you have permissions set properly, you can run mysql queries from the admincp: Maintenance -> Execute SQL Query.
Hope those help. -- Rik