PHP Classes

File: main/inc/userpage.php

Recommend this page to a friend!
  Classes of Zamani   PHP Login System with Email Verification   main/inc/userpage.php   Download  
File: main/inc/userpage.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Login System with Email Verification
Register and login users activated using email
Author: By
Last change:
Date: 2 years ago
Size: 1,498 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Bootstrap table</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
    <h2>Welcome <?php print $_SESSION['user']['fname'] . ' ' . $_SESSION['user']['lname']; ?></h2>
    <table class="table table-striped">
        <thead>
        <tr>
            <th>Firstname</th>
            <th>Lastname</th>
            <th>Email</th>
        </tr>
        </thead>
        <tbody>
        <?php if ($_SESSION['user']['user_role'] == 2) {
            foreach (
$vars as $user) {
               
?>
<tr>
                    <td><?= $user['fname'] ?></td>
                    <td><?= $user['lname'] ?></td>
                    <td><?= $user['email'] ?></td>
                </tr>
                <?php
           
}
        } else {
?>
<tr>
                <td><?= $_SESSION['user']['fname'] ?></td>
                <td><?= $_SESSION['user']['lname'] ?></td>
                <td><?= $_SESSION['user']['email'] ?></td>
            </tr>
        <?php } ?></tbody>
    </table>
    <p><a href='logout.php'>Logout</a></p>
</div>

</body>
</html>