?
Current Path : /home1/savoy/public_html/savoyglobal.net/old_site/views/site/ |
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/old_site/views/site/participants.php |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <?php $this->load->view('site/header'); ?> <link rel="stylesheet" type="text/css" href="<?=base_url()?>/assets/css/tablesort.css" media="screen" /> </head> <body> <?php $this->load->view('site/menu'); ?> <div id="container"> <div class="banner"> <div class="banner_top"></div><!--banner_top end--> <div class="banner_mid_inner"><img src="<?=base_url()?>assets/images/banners/participants.jpg" alt="Participants"/></div><!--banner_mid end--> <div class="banner_bot"></div><!--banner_bot end--> </div><!--banner end--> <div class="content"> <div class="content_left_contact"> <h6>Participants</h6> <br/> <div class="text_cont_center" style="min-height: 200px;"> <h2><?=$event->event_name;?></h2> <table class="sort" cellpadding="0" cellspacing="0" width="100%"> <thead> <tr> <th style="width:2%; text-align:center;">Sl No</th> <th style="width:20%">School</th> <?php for($i=1;$i<=$event->event_no_participant;$i++) { ?> <th>Participant <?=$i;?></th> <?php } ?> </tr> </thead> <tbody> <?php $j=1; foreach ($viewinfo as $registration) { ?> <tr> <td class="align-center"><?=$j++;?></td> <td><?=$registration['registration_school_name'];?></td> <?php $participant=$this->mastermodel->get_data_table('registration_partcipant',$registration['registration_id'],'registration_id','partcipant_id'); foreach($participant as $list) { ?> <td><?=$list['participant_name'];?></td> <?php } ?> <td><?=$registration['registration_singles_player_name'];?></td> <td><?=$registration['registration_singles_player_designation'];?></td> </tr> <?php } ?> </tbody> </table> </div> </div><!--content_left end--> <?php //$this->load->view('site/right'); ?> </div><!--content end--> </div><!--container end--> <?php $this->load->view('site/footer'); ?> </body> </html>