本文整理汇总了PHP中Teacher::getInfobyDept方法的典型用法代码示例。如果您正苦于以下问题:PHP Teacher::getInfobyDept方法的具体用法?PHP Teacher::getInfobyDept怎么用?PHP Teacher::getInfobyDept使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Teacher
的用法示例。
在下文中一共展示了Teacher::getInfobyDept方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Course
echo $department->dept_id;
?>
</td>
<td><?php
echo $department->name;
?>
</td>
<td><?php
$cors = new Course();
$courses = $cors->getInfobyDept($department->dept_id);
echo $courses->num_rows;
?>
</td>
<td><?php
$t = new Teacher();
$teachers = $t->getInfobyDept($department->dept_id);
echo $teachers->num_rows;
?>
</td>
<td><button class="btn btn-default" onClick="edit_department_feild(<?php
echo $i . ',' . $department->dept_id;
?>
);" > Edit </button>
<button class="btn btn-danger" onClick="delete_department(<?php
echo $i . ',' . $department->dept_id;
?>
)"; >Delete</button>
</td>
</tr>
<?php
}
示例2: Course
<th>No. of Course(s)</th>
<td>
<?php
$cors = new Course();
$courses = $cors->getInfobyDept(Input::get('did'));
echo $courses->num_rows;
?>
</td>
</tr>
<tr>
<th>No. of Teacher(s)</th>
<td>
<?php
$t = new Teacher();
$teachers = $t->getInfobyDept(Input::get('did'));
echo $teachers->num_rows;
?>
</td>
</tr>
<tr>
<td>
<input type="submit" value=" Save " class="btn btn-success" name = "submit" />
</td>
<td>
<input type="button" class="btn btn-danger" value="Cancel" onClick="save_edit_dep()"; />
</td>
</tr>
</tbody>