我有一个包含字段的父表
编号 | 学生代码 | 父名 | 关系 | 移动 | 电子邮件
我正在为我的项目使用 codeigniter 和 bootstrap。目前我已经加载了父表的一些细节
在控制器中
$data['parents'] = $this->parent_m->get();
在视图中
<h3><span style="color:#777">Profile of</span> <?php echo $student->first_name." ".$student->middle_name . " " .$student->last_name ?></h3>
<section>
<table class="table table-striped">
<tr>
<td>Sudent Code *</td>
<td><?php echo $student->code; ?></td>
</tr>
<tr>
<td>Admission Date *</td>
<td><?php echo $student->admission_date; ?></td>
</tr>
</table>
<ul class="nav nav-tabs" id="myTab">
<li class="active"><a href="#general" data-toggle="tab">General</a></li>
<li><a href="#contact" data-toggle="tab">Contact</a></li>
<li><a href="#parent" data-toggle="tab">Parent Info</a></li>
<li><a href="#previous" data-toggle="tab">Previous Edu.</a></li>
<li><a href="#result" data-toggle="tab">Result</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="general">
<h3>General Detail</h3>
<table class="table table-striped">
<tr>
<td>Date of Birth *</td>
<td><?php echo $student->dob; ?></td>
</tr>
<tr>
<td>Gender</td>
<td><?php echo $student->gender; ?></td>
</tr>
<tr>
<td>Course</td>
<td><?php echo $student->course; ?></td>
</tr>
<tr>
<td>Nationality</td>
<td><?php echo $student->nationality; ?></td>
</tr>
<tr>
<td>Religion</td>
<td><?php echo $student->religion; ?></td>
</tr>
<tr>
<td>Current Semester </td>
<td><?php echo $student->current_semester; ?></td>
</tr>
</table>
</div>
<div class="tab-pane" id="contact">
<h3>Contact</h3>
<table class="table table-striped">
<tr>
<td>Address Line 1 </td>
<td><?php echo $student->address_line_1; ?></td>
</tr>
<tr>
<td>Address Line 2</td>
<td><?php echo $student->address_line_2; ?></td>
</tr>
<tr>
<td>City </td>
<td><?php echo $student->city; ?></td>
</tr>
<tr>
<td>Country </td>
<td><?php echo $student->country; ?></td>
</tr>
<tr>
<td>Phone</td>
<td><?php echo $student->phone; ?></td>
</tr>
<tr>
<td>Mobile </td>
<td><?php echo $student->mobile; ?></td>
</tr>
<tr>
<td>Email </td>
<td><?php echo $student->email; ?></td>
</tr>
</table>
</div>
<div class="tab-pane" id="parent">
<h3>Parent Info</h3>
<?php if(count($parents)): ?>
<table class="table table-striped">
<tr>
<th>Parent Name</th>
<th>Relation</th>
</tr>
<?php foreach($parents as $parent): ?>
<tr>
<td><a href="#myModal" data-toggle="modal"><?php echo $parent->parent_name; ?></a></td>
<td><?php echo $parent->relation; ?></td>
</tr>
<?php endforeach; ?>
</table>
<?php else: echo "No Parent Found <br />"; endif; ?>
</div>
<div class="tab-pane" id="previous">
<h3>Previous Education Detail</h3>
<?php if(count($previous_details)): ?>
<table class="table table-striped">
<tr>
<th>Insitution Name</th>
<th>Course</th>
<th>Year</th>
<th>Percentage</th>
</tr>
<?php foreach($previous_details as $key): ?>
<tr>
<td><?php echo $key->institution_name; ?></td>
<td><?php echo $key->course; ?></td>
<td><?php echo $key->year; ?></td>
<td><?php echo $key->percentage; ?></td>
</tr>
<?php endforeach; ?>
</table>
<?php else: echo "Previous Qualification Detail Not Added <br />"; endif; ?>
</div>
<div class="tab-pane" id="result">
<table class="table table-striped">
<tr>
<th>Result</th>
<th>Stream</th>
<th>Semester</th>
<th>Date</th>
</tr>
<?php foreach($exams as $exam): ?>
<tr>
<td><?php echo $exam->title; ?></td>
<td><?php echo $exam->stream; ?></td>
<td><?php echo $exam->semester; ?></td>
<td><?php echo $exam->date; ?></td>
</tr>
<?php endforeach; ?>
</table>
</div>
</div>
</section>
<div id="myModal" class="modal hide fade">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Your Parents</h3>
</div>
<div class="modal-body">
[Parent Detail Should come Here]
</div>
</div>
到目前为止它工作正常。我现在想要的是,[内容应该来这里]应该替换为实际内容,例如他的父母姓名、关系、手机、电子邮件。列表中可能有多个父母,因此用户可以点击任何人。当用户单击父名称时,父详细信息应在同一页面上弹出,如果它是引导弹出窗口会更好。