EVOLUTION-NINJA
Edit File: program_list_user.php
<?php echo view('includes/admin-header'); ?> <link rel="stylesheet" type="text/css" href="<?php echo base_url('public/assets/css/jquery-ui.css'); ?>"/> <link rel="stylesheet" type="text/css" href="<?php echo base_url('public/assets/css/conference.css'); ?>"> <div class="col-sm-10"> <div class="add-conference-right"> <div class="container"> <h3 class="conf-tag"><?php echo $details[0]['fields'] ?></h3> <div class="prog-schedule"> <input type="hidden" class="form-control insert_id" id="insert_id" name="insert_id" value = '0'> <div class="table-responsive pt-5"> <!-- hide the id --> <table class="table table-bordered" > <thead> <tr > <th>Date</th> <th>Start Time</th> <th>End Time</th> <th>Moderator</th> <th>Speaker</th> <th>View List</th> </tr> </thead> <tbody id="ps"> <?php foreach($programs as $key => $val){ ?> <tr> <td><?php echo $val['date'] ?></td> <td><?php echo $val['start_time'] ?></td> <td><?php echo $val['end_time'] ?></td> <td><?php echo $val['moderator'] ?></td> <td><?php echo $val['speaker'] ?></td> <td><button onclick="myfun(<?php echo $val['ps_id'] ?>)">View Details</button></td> </tr> <?php } ?> </tbody> </table> </div><!--table-responsive--> </div><!--prog-schedule--> </div> </div><!--add-conference-right---> </div><!----> <script> function myfun(id){ // console.log(id); window.location = '<?php echo base_url("Online-user-view-page")?>?id='+id; } </script> <?php echo view('includes/admin-footer'); ?>