Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: User Mod...

Quote Reply
Re: User Mod... In reply to
That is easy...simply use the DETAILED PAGES for USERS instead of Links, then use the following SQL statement to pull the records from the Links table within a plug-in:

Code:

SELECT *
FROM Links, Users
Users INNER JOIN Links ON Users.UserID = Links.UserID
WHERE UserID = $userid


Define $userid as $IN->{'UserID'}.

Of course the above hard-coded SQL query could easily be totally re-written into a plug-in.

Regards,

Eliot Lee
Subject Author Views Date
Thread User Mod... luchini 3282 Mar 14, 2001, 10:24 PM
Thread Re: User Mod...
ridesworld 3250 Mar 15, 2001, 12:26 AM
Thread Re: User Mod...
luchini 3196 Mar 15, 2001, 8:04 AM
Thread Re: User Mod...
AlexJ 3200 Mar 15, 2001, 11:24 AM
Post Re: User Mod...
Stealth 3129 May 9, 2001, 8:50 PM
Thread Re: User Mod...
c70plus 3134 May 10, 2001, 3:10 AM
Thread Re: User Mod...
Stealth 3149 May 10, 2001, 7:37 AM
Thread Re: User Mod...
luchini 3133 May 10, 2001, 12:55 PM
Post Re: User Mod...
Stealth 3066 May 10, 2001, 6:05 PM
Thread Re: User Mod...
c70plus 3103 May 10, 2001, 2:32 PM
Post Re: User Mod...
Stealth 3065 May 10, 2001, 6:06 PM