Signed up user icon and identification on the page
Autor: M. Kalem
Visitado 775,
Followers 1,
Compartido 0
Hello everyone
is there any esay way that,
signed user who is registered him/her self on website registration,
and doing some shopping,and see him/her self on the top right icon and name.
like :
thanks
Publicado en
This function is not available by default. A corresponding development with, for example, php is also relatively complex.
Autor
actually using HTML code object I use this easy coding
<p style="font-size:12px">
<?php
$pa = new imPrivateArea();
$user = $pa->who_is_logged();
echo "user: " . $user['username'];
?>
but it is very amator looking
does anyone has another option or suggestion?
Here https://www.php.net/manual/en/function.imagejpeg.php you can read how images are output with php. In the manual you will also find further information on programming php scripts.