$schools = $objSchool->getAllUni(); } ?> <table cellpadding="0" cellspacing="0" border="0" class="tbl_repeat" id="categoriesTable" style="margin-bottom:0px;" data-object="university"> <tr> <th class="borderRight">Name</th> <th>Abbreviations</th> </tr> <?php foreach ($schools as $school) { $disabled = $objSchool->checkSchoolInMembers($school['id'], true); $abbr = $objSchool->getSchoolAbbr($school['id']); ?> <tr data-id="<?php echo $school['id']; ?> "> <td class=" borderRight showInputField clickable" data-field="name" style="width:auto;"> <span style="font-weight:bold;"><?php echo $school['name']; ?> </span> </td> <td > <a href="#"></a> <?php
$schools = $objSchool->getAllHighSchools(); } ?> <table cellpadding="0" cellspacing="0" border="0" class="tbl_repeat" id="categoriesTable" style="margin-bottom:0px;" data-object="high_school"> <tr> <th class="borderRight">Name</th> <th>Abbreviations</th> </tr> <?php foreach ($schools as $school) { $disabled = $objSchool->checkSchoolInMembers($school['id'], true); $abbr = $objSchool->getSchoolAbbr($school['id'], true); ?> <tr data-id="<?php echo $school['id']; ?> "> <td class=" borderRight showInputField clickable" data-field="name"> <span style="font-weight:bold;"><?php echo $school['name']; ?> </span> </td> <td > <a href="#"></a> <?php