I wonder if you could help me.
I am creating a customhtml module that displays the users name and registered date, so far the code I have works and is as follows;
{user firstname}, hello.
{source}
<?php
$user = JFactory::getUser();
echo 'Registered Date: ' . $user->get('registerDate');
?>
{/source}
Should I be using different syntax?
(note - I am using NoNumbers source plugin to embed php)
Thanks