 |

sagentic
User

Jul 15, 2008, 5:23 PM
Post #1 of 2
(154 views)
Shortcut
|
How do you get listings pulled up by a particular user? I tried index.php?createdByUserNum=<?php echo $record['createdBy.fullname'] ?> and it didn't work.
|
|
|  |
 |

Dave
Staff
/ Moderator

Jul 16, 2008, 10:26 PM
Post #2 of 2
(134 views)
Shortcut
|
Hi sagentic, You're almost there - you want the user number. So if $record is the user record you could use: index.php?createdByUserNum=<?php echo $record['num'] ?> But if record is something else, say an article, you could just do this: index.php?createdByUserNum=<?php echo $record['createdByUserNum'] ?> Hope that helps! Let me know if you need any more details on that. Dave Edis - Senior Developer interactivetools.com
|
|
|  |
|