golden hour
/home/phakp/public_html/bkp_full/old_site_bkp/application/views/cfcs
⬆️ Go Up
Upload
File/Folder
Size
Actions
fc_district.php
549 B
Del
OK
fc_district_detail.php
1.53 KB
Del
OK
goal.php
514 B
Del
OK
hierarchy.php
1.46 KB
Del
OK
officers.php
498 B
Del
OK
Edit: fc_district_detail.php
<div role="main" class="main"> <div class="container"> <div class="row mt-xlg"> <div class="col-md-12"> <?php $disiii=$this->db->query("select district_name,detail from district where district_id=$DisID")->row();?> <h2><strong>FRONTIER CONSTABULARY DISTRICT <?php echo $disiii->district_name;?> </strong> </h2> <p> <table border="1" width="100%"> <tr style="background-color:#AA0207 ; color:#fff; font-weight:bold"> <td align="center">Introduction</td> <td align="center">Officers</td> </tr> <tbody> <?php //$i=1; //$tot=1; //foreach($distii as $row){?> <tr> <td width="50%"><?php echo $disiii->detail;?></td> <td><b><u>District Officer</u></b><br> <?php $i=1; foreach($desig2 as $desig2) { echo $i." ".$desig2->officer_name; ?> <?php $i++; }?> <br> <b><u>District Officer</u></b><br> <?php $g=1; foreach($desig3 as $desig4) { echo $g." ".$desig4->officer_name."<br>"; ?> <?php $g++; }?></td> </tr> <?php //$tot+=$row->platoon; //$i++; ///}?> </tbody> </table> <hr> <table border="1" width="100%"> <tr style="background-color:#AA0207; color:#fff; font-weight:bold"> <td align="center">Pictures Of District</td> <td align="center">Pictures of martyre</td> </tr> <tr> <td width="50%"></td> <td width="50%"></td> </tr> </table> </p> </div> </div> </div> </div>
Save