Example #1
0
        <td>Modified By</td>
        <td>Last Modified</td>

        <td colspan="2">
            <form action="adminPortal.php" method="post">
                <input type="text" name="addPage" value="addPage" hidden />
                <input type="Submit" id="addUser" name="addUser" value="Add User" />

            </form>
        </td>
    </tr>
    </thead>
    <tbody>
    <?php 
require "../Business/UserClass.php";
$arrayOfPages = UserClass::retrieveUsers();
foreach ($arrayOfPages as $page) {
    ?>
        <tr>
            <td><?php 
    echo $page->getID();
    ?>
</td>
            <td><?php 
    echo $page->getUsername();
    ?>
</td>
            <td><?php 
    echo $page->getFistName();
    ?>
</td>