PHP Classes

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

Recommend this page to a friend!
  Classes of Ssaurz Acharya   FedUni PHP Family Tree App   familytree/apps/frontend/views/person/view.php   Download  
File: familytree/apps/frontend/views/person/view.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: 778 bytes
 

Contents

Class file image Download
<?php include_once "person_menu.php";?>
<div id="person_list">
        <h4 style="font-family:Arial;color:#5F5F5F;"><?php echo htmlentities($individual_detail[0]["child_name"]); ?></h4>
        <table id="list_table">
            <tr><th>Name</th><th>Date Of Birth</th><th>Parent</th><th>GrandParent</th></tr>
        <?php foreach($individual_detail as $details): ?>
<tr>
                <td><?php echo htmlentities($details["child_name"]); ?></td>
                <td><?php echo htmlentities($details["child_dob"]); ?></td>
                <td><?php echo htmlentities($details["parent_name"]); ?></td>
                <td><?php echo htmlentities($details["gp_name"]); ?></td>
            </tr>
        <?php endforeach; ?>
</table>
    </div>