Hello,
I am trying change the name and email of a user joomla.
I don't want change my own user data
I want change it of other users.
I have tried with this but no running.
Thans
I am trying change the name and email of a user joomla.
I don't want change my own user data
I want change it of other users.
I have tried with this but no running.
<?php
$otherUser = 1445;
$user = /JFactory::getUser($otherUser);
$user->setParam('name', "new name");
$user->setParam('email', "newemail@domain.com");
$user->save();
?>
Thans