Hello, well , I can retrive the username that its logged in, so I want to save that username to my table everytime the form its saved.
In the section On Load I put a Custome code with this:
Then I create a new column in my table= "name" so when the form its saved the username saves there.
But it doesnt work , form saves everything except the username😟
Please help!
In the section On Load I put a Custome code with this:
<?phpThen I put in the Designer a textbox (name) and the username displays there everytime the Form its loaded, everthing works fine so far.
$user =& JFactory::getUser();
$form->data['name'] =& $user->name;
?>
Then I create a new column in my table= "name" so when the form its saved the username saves there.
But it doesnt work , form saves everything except the username😟
Please help!