10 lines
315 B
PHP
10 lines
315 B
PHP
|
|
||
|
<!-- widget "user profile" -->
|
||
|
<div>
|
||
|
<p>Profile of <?= $user ?></p>
|
||
|
<ul>
|
||
|
<li>username: <?= $_SESSION['username'] ?></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<!-- /widget "user profile" -->
|