| Server IP : 162.214.74.102 / Your IP : 216.73.217.114 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_apps/school/application/views/backend/student/ |
Upload File : |
<?php
$student_info = $this->crud_model->get_student_info($param2);
foreach($student_info as $row):?>
<div class="profile-env">
<header class="row">
<div class="col-sm-3">
<a href="#" class="profile-picture">
<img src="<?php echo $this->crud_model->get_image_url('student' , $row['student_id']);?>"
class="img-responsive img-circle" />
</a>
</div>
<div class="col-sm-9">
<ul class="profile-info-sections">
<li style="padding:0px; margin:0px;">
<div class="profile-name">
<h3><?php echo $row['name'];?></h3>
</div>
</li>
</ul>
</div>
</header>
<section class="profile-info-tabs">
<div class="row">
<div class="">
<br>
<table class="table table-bordered">
<?php if($row['class_id'] != ''):?>
<tr>
<td>Class</td>
<td><b><?php echo $this->crud_model->get_class_name($row['class_id']);?></b></td>
</tr>
<?php endif;?>
<?php if($row['roll'] != ''):?>
<tr>
<td>Roll</td>
<td><b><?php echo $row['roll'];?></b></td>
</tr>
<?php endif;?>
<?php if($row['birthday'] != ''):?>
<tr>
<td>Birthday</td>
<td><b><?php echo $row['birthday'];?></b></td>
</tr>
<?php endif;?>
<?php if($row['sex'] != ''):?>
<tr>
<td>Gender</td>
<td><b><?php echo $row['sex'];?></b></td>
</tr>
<?php endif;?>
<?php if($row['phone'] != ''):?>
<tr>
<td>Phone</td>
<td><b><?php echo $row['phone'];?></b></td>
</tr>
<?php endif;?>
<?php if($row['email'] != ''):?>
<tr>
<td>Email</td>
<td><b><?php echo $row['email'];?></b></td>
</tr>
<?php endif;?>
<?php if($row['address'] != ''):?>
<tr>
<td>Address</td>
<td><b><?php echo $row['address'];?></b>
</td>
</tr>
<?php endif;?>
</table>
</div>
</div>
</section>
</div>
<?php endforeach;?>