PHP Classes

File: familytree/apps/frontend/views/person/index.php

Recommend this page to a friend!
  Classes of Ssaurz Acharya   FedUni PHP Family Tree App   familytree/apps/frontend/views/person/index.php   Download  
File: familytree/apps/frontend/views/person/index.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: FedUni PHP Family Tree App
Manage and display a tree of family people
Author: By
Last change:
Date: 1 year ago
Size: 634 bytes
 

Contents

Class file image Download
<?php include_once "person_menu.php"; ?>
<div id="person_list">
        <h4 style="font-family:Arial;color:#5F5F5F;">All Person List</h4>
        <table id="list_table">
            <tr><th>Name</th><th>Date Of Birth</th></tr>
        <?php foreach($person_details as $details): ?>
<tr>
                <td><a href="http://localhost/familytree/person/view/<?php echo htmlentities($details['id']); ?>"><?php echo htmlentities($details["name"]); ?></a></td>
                <td><?php echo htmlentities($details["date_of_birth"]); ?></td>
            </tr>
        <?php endforeach; ?>
</table>
    </div>