need updatedBy fullname
10 posts by 4 authors in: Forums > CMS Builder
Last Post: April 24, 2012 (RSS)
I tried it but get an undefined error.
Re: [IronVictory] need updatedBy fullname
By Dave - November 14, 2008
Let me know if that would work for you.
interactivetools.com
Re: [Dave] need updatedBy fullname
By markr - February 1, 2009
Thanks in advance. It will make perfect sense when I see the code, I'm sure. I'm just not at the level where I can write it.
Re: [markr] need updatedBy fullname
By Dave - February 2, 2009
Would the createdByNum field work or does it have to be updatedByNum?
Let me know and I'll give you some suggestions.
interactivetools.com
Re: [markr] need updatedBy fullname
By markr - February 2, 2009
Re: [markr] need updatedBy fullname
By Dave - February 3, 2009
<?php echo $record['createdBy.fullname']; ?>
To see all the variables available you can use this debug code:
<xmp><?php print_r($record) ?></xmp>
Hope that helps!
interactivetools.com
Re: [Dave] need updatedBy fullname
By Perchpole - April 24, 2012
Did we ever find a solution for this? I do need to show updatedBy.fullname - or i ned to put together the php which will allow me to display the same thing.
Can anyone help, please?
:0)
Perch
Re: [Perchpole] need updatedBy fullname
By Perchpole - April 24, 2012
<?php $user = mysql_get('accounts', $pageContent['updatedByUserNum']);
echo $user['fullname'];
?>
This appears to work!
:0)
Perch
Re: [Perchpole] need updatedBy fullname
By Dave - April 24, 2012
Looks good! Nice job.
Cheers!
interactivetools.com