With "
zero" knowledge
of php, i did my best to solve the problems. And actually i did solve most of my problems through
google them or search for the possible answers through vb.org
But i still have some problems which i can not solve.
Can not find the right variable for the forum title :
When i list the threads of forumid=2, i can sort them through the letterbar. In the current letterbar, there are "Title", "Author" and "Date" sections. I did add another section called "Forum" which will show the forum title of the thread which it belongs to.
Code:
<td class="$alternate" WIDTH="25%" VALIGN="TOP" NOWRAP><div class="smallfont">$forum[forumtitle]</div></td>
I've also tried $forumid, $forum[title], forumid and maybe +20 different tries which i do not remember now. But none of them worked.
I would like to make a "movie list" for my forum. Due to i have lot of categories such as "Dvd Movie Reviews", "HD-Bluray Movie Reviews", "TV Series Reviews" etc.., i tried to make css navigation menu as shown on below image.
I used "Site Information Pages Template" for this movie list but it did not work due to a reason i do not even remember right now. I feel like my head will blow soon due to those complicated, puzzling, meaningless php codes.
***Above picture is just an example to give an idea about what i would like to do
Is it possible to pull threads from different forums at same time ?
Code:
SELECT threadid, title, postusername,postuserid,dateline
FROM " . TABLE_PREFIX . "thread
WHERE sticky=0 AND visible=1 AND forumid=103 $letterquery
ORDER BY dateline DESC
LIMIT 500
I did below adding :
Code:
forumid=103 or forumid=104 or forumid=105
I've also tried below :
Code:
forumid=103 AND forumid=104 AND forumid=105
But none of them worked. So i guess i do something wrong or maybe its not possible to do what i want to do...