Hallo,
I have to know the registration data of the user who uses my form.
<?php
$user=JFactory::getUser();
?>
<?= $user->username; ?><br />
<?= $user->password_clear; ?>
But the password is encrypted. How can I get the password in clear text?
Thank you for your answer.
HC
I have to know the registration data of the user who uses my form.
<?php
$user=JFactory::getUser();
?>
<?= $user->username; ?><br />
<?= $user->password_clear; ?>
But the password is encrypted. How can I get the password in clear text?
Thank you for your answer.
HC