?
Current Path : /home1/savoy/public_html/savoyglobal.net/futuredraft/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/public_html/savoyglobal.net/futuredraft/application/views/sms/single_sms_report.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); ?> <div class="icons_main"> <div class="icons"> <img src="<?=base_url()?>assets/images/back.png" title="Back" class="clickimage" onclick="viewdata('sms','viewinsmssearch','search_sms_reports','view_sms_reports','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="32" height="32" /> </div> <div class="icons_caption"> <h4> SMS Report Details</h4> </div> </div> <?php $attributes = array('class' => 'search_form', 'id' => 'validateform', 'name' => 'validateform'); echo form_open('', $attributes); ?> <div class="grid_12" > <div class="box"> <div class="content no-padding"> <div class="header main"> SMS recipient</div> <div class="section _100"> <label>Content</label> <div> <?=$smsreport->sms_contents?> </div> </div> <table cellpadding="0" cellspacing="0" width="120%" class="table"> <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> </div> </div> </div> <?php echo form_close(); ?>