I'm trying to add a link to a member's friends list in a php block (custom menu). Linking to viewFriends.php?iUser={profileID} doesn't seem to do it.
Is there another way?
Many thanks for any advice in advance.
I'm trying to add a link to a member's friends list in a php block (custom menu). Linking to viewFriends.php?iUser={profileID} doesn't seem to do it. Is there another way? Many thanks for any advice in advance. |
viewFriends.php?iUser={memberID} |
I have tried that but unfortunately that doesn't work either. The code I'm putting into the php block looks like this: <ul class="metro"><li class="small-tile-image scale10 videohive"><a class="tile" href="viewFriends.php?iUser={memberID}"><span>Your language friends</span><img src="images/contacts-icon.png" alt=""></a> |
Try this viewFriends.php?iUser=$iId not sure how you putting this in a php block so much to do.... |
Thanks Prashank. Here's a stupid question: Where do I put the $iId = getLoggedId(); bit? |
Don't worry. viewFriends.php?ID=memberID worked in the end. Thanks. |