?
Current Path : /home1/savoy/public_html/savoyglobal.net/chess2015open/application/views/admin/ |
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/chess2015open/application/views/admin/sms_list.php |
<script type="text/javascript"> $(function () { $('#checkall').click(function () { $('#select_table').find(':checkbox').attr('checked', this.checked); }); }); </script> <form id="validateform" class="formnew" action="" method="post"> <table id="myTable" class="tablesorter"> <thead> <tr> <th style="width:2%; text-align:center;"><input name="checkall" id="checkall" type="checkbox" onchange="checkall(this)"/></th> <th style="width:20%">Company Name</th> <th style="width:10%">Player Name</th> <th style="width:10%">Designation</th> <th style="width:10%">Contact #</th> <th style="width:10%">Email</th> </tr> </thead> <tbody id="select_table"> <?php $i=1; foreach ($viewinfo as $registration) { ?> <tr> <td class="align-center"><input type="checkbox" name="email_checkbox[]" value="<?=$registration['email_id'];?>"/></td> <td><?=$registration['company_name'];?></td> <td><?=$registration['player_name'];?></td> <td><?=$registration['designation'];?></td> <td><?=$registration['contact_no'];?></td> <td><?=$registration['email_id'];?></td> </tr> <?php } ?> </tbody> </table> <div class="module-body"> <p> <label>Content</label> <textarea name="content" id="content" cols="" rows="9" class="input-medium required" ></textarea> </p> <fieldset> <input class="submit-green" type="submit" value="Send SMS" name="savep" onclick="addformdata('validateform')" /> </fieldset> </div> </form>