I want to be able to only allow selected user accounts the ability to see and edit the data. I know I can use:
<?php
$user =&JFactory::getUser();
echo $user->name;
}
?>
To get back the user name, but how can I block who can see the data?
<?php
$user =&JFactory::getUser();
echo $user->name;
}
?>
To get back the user name, but how can I block who can see the data?