-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.php
26 lines (25 loc) · 1023 Bytes
/
profile.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
require_once 'nav.php';
?>
<section class="content">
<h1>User profile</h1>
<article>
<!-- All the data from input -->
<ul>
<li>Name: <span><?php echo ucfirst ($_SESSION['username']); ?></span></li>
<li>Age: <span><?php echo $_SESSION['userage']; ?></span></li>
<li>Country: <span><?php echo ucfirst ($_SESSION['usercountry']); ?></span></li>
<li>City: <span><?php echo ucfirst ($_SESSION['usercity']); ?></span></li>
<li>Favorite colors: <span><?php echo strtoupper ($_SESSION['usercolor1']) . ' and ' . strtoupper ($_SESSION['usercolor2']); ?></span></li>
</ul>
<div class="input_colors_profile">
<div style="background-color:<?php echo $_SESSION['usercolor2'];?>" class="divcolor"></div>
<div style="background-color:<?php echo $_SESSION['usercolor1'];?>" class="divcolor"></div>
</div>
</article>
<form action="index.php" method="post">
<button type="submit">↖ Back to start</button>
</form>
</section>
</body>
</html>