?
Current Path : /home1/savoy/public_html/savoyglobal.net/sibs_draft/system/application/views/HR/ |
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/sibs_draft/system/application/views/HR/editgrade.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <?php /* * To change this template, choose Tools | Templates * and open the template in the editor. */ foreach($viewinfo as $updata) { $grade=$updata['gradename']; $gradecode = $updata['gradecode']; $gradeid=$updata['id']; } ?> <div class="select-bar"> <label> <img src="<?=base_url()?>/assets/images/backbutton.png" title="Back" onclick="loadgrade('<?=$_SESSION['pagenum']?>','<?=$_SESSION['searchoption']?>','<?=$_SESSION['searchtxt']?>')" alt="Back" align = "center" width="25" height="25" /></label> </div> <fieldset> <legend>Update Grade</legend> <?php $attributes = array('id' => 'customForm'); echo form_open('hr/editgrade',$attributes); echo form_hidden('gradeid',$gradeid); ?> <ul> <li> <label for="Department Code">Grade Code</label> <?php echo $gradecode; ?> </li> <li> <label for="country">Grade Name</label> <?php $data = array( 'name' => 'gradename', 'id' => 'gradename', 'value' => $grade, ); ?> <?php echo form_input($data).form_error($data); ?><span id="gradenameInfo" class="red_bold">*</span> </li> <li><label for="submit"> </label> <button type="submit" id="submit" onclick="return validateform('gradename');">Update</button> </li> </ul> <?php echo form_close();?> </fieldset>