Topic: Additional Menu Items
Hi guys,
I've used this forum software on-and-off for 2 years now and still loving it.
I'm trying to add an additional menu item but the actual link needs to go to a profile page that is determined by a $_GET string.
How would I add an additional link to go to this URL (for example)?
profile.php?id=101
101 being my user ID that'd need to change for each user.
Is there something I can replace it with, like <USER_ID> or something that'll automatically get that for me?
...or is it possible to use PHP in that little box?
profile.php?id=<?php echo $_GET['id'];?>
Anyone?