MyBB Community Forums

Full Version: View your Threads
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, i want to make a button "View your threads" after a member logs in.

Well i don't know the structure.

Must be somthing like this :

href="{$mybb->settings['bburl']}/search.php?action=finduserthreads& 

I don't know after the & symbol what comes.

Regards~
<a href="{$mybb->settings['bburl']}/search.php?action=finduserthreads&amp;uid={$uid}">View your threads</a>
{$uid} isn't a valid variable, ranjani. You need to use this instead:

<a href="search.php?action=finduserthreads&uid={$mybb->user['uid']}">View my threads</a>
^ oh! Thank You Smile
Thanks~