|
Here's how I would do it: I'd have the list of names, which would link to a popup with the user ID number as a parameter:
[html]<a href="#" onclick="javascript:window.open('person.php?id=5');">John Smith</a>[/html]
I'd then get the information in the popup page, rather than unnecessarily loading all of it at once for the list.
|