?
Current Path : /home1/savoy/www/savoyglobal.net/eldertree/application/views/sms/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/www/savoyglobal.net/eldertree/application/views/sms/single_sms_report.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); ?> <div class="row-fluid"> <div class="tab-pane " id="tab_2"> <div class="portlet box yellow"> <div class="portlet-title"> <div class="caption"><i class="icon-reorder"></i>Sms Report Details</div> <div class="tools"> <a href="#" onclick="viewdata('sms','viewinsmssearch','search_sms_reports','view_sms_reports','<?=$_SESSION['pagenum'];?>')" class="remove"></a> </div> </div> <div class="portlet-body form"> <div class="form-horizontal form-view form-bordered"> <!-- BEGIN FORM--> <?php $attributes = array('class' => 'search_form', 'id' => 'validateform', 'name' => 'validateform'); echo form_open('', $attributes); ?> <br> <br> <div class="portlet box yellow"> <div class="portlet-title"> <div class="caption"><i class="icon-check"></i> Sms recipient</div> </div> <div class="portlet-body"> <div class="row-fluid"> <div class="control-group"> <label class="control-label">Content</label> <div class="controls"> <?=$smsreport->sms_contents?> </div> </div> </div> </div> </div> <table class="table table-striped table-hover table-bordered" id="sample_3"> <tbody><tr> <th style="width: 17px;">Sl No.</th> <th>Name</th> <th>Number</th> <th>Status</th> <th style="width: 165px;">Type</th> </tr> <?php $slno = 0; foreach ($sms_receipents as $row) { ?> <tr <?php if ($slno % 2 == 0) { ?>class="first" <?php } else { ?> class="second" <?php } ?>> <td><?= ++$slno; ?></td> <td><?= $row['receipent_name']; ?></td> <td><?= $row['numbers']; ?></td> <td><?= $row['status']; ?></td> <td><?= $row['receipent_type']; ?></td> </tr> <?php } ?> </tbody> </table> <?php echo form_close(); ?> <!-- END FORM--> </div> </div> </div> </div> </div>