<?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>
 
 |