patashala/application/views/backend/admin/modal_subject.php
Vivek a53135a78d Added based code
Added base code to the repo
2024-02-07 20:19:28 +05:30

39 lines
2.0 KiB
PHP
Executable File

<?php $edit_data = $this->db->get_where('subject' , array('subject_id' => $param2))->result_array();
foreach($edit_data as $row):
?>
<?php echo form_open(base_url() . 'admin/courses/update/'.$row['subject_id'], array('enctype' => 'multipart/form-data')); ?>
<br>
<div class="form-group row">
<label class="col-sm-4 col-form-label" for=""> <?php echo get_phrase('name');?></label>
<div class="col-sm-8">
<div class="input-group">
<div class="input-group-addon">
<i class="picons-thin-icon-thin-0004_pencil_ruler_drawing"></i>
</div>
<input class="form-control" name="name" value="<?php echo $row['name'];?>" required="" type="text">
</div>
</div>
</div>
<div class="form-group row">
<label class="col-form-label col-sm-4" for=""> <?php echo get_phrase('teacher');?></label>
<div class="col-sm-8">
<div class="input-group">
<div class="input-group-addon">
<i class="picons-thin-icon-thin-0704_users_profile_group_couple_man_woman"></i>
</div>
<select class="form-control" name="teacher_id">
<option value=""><?php echo get_phrase('select');?></option>
<?php $teachers = $this->db->get('teacher')->result_array();
foreach($teachers as $teacher):
?>
<option value="<?php echo $teacher['teacher_id'];?>" <?php if($row['teacher_id'] == $teacher['teacher_id']) echo 'selected';?>><?php echo $teacher['name'];?></option>
<?php endforeach;?>
</select>
</div>
</div>
</div>
<div class="form-buttons-w">
<button class="btn btn-rounded btn-primary" style="float: right;" type="submit"> <?php echo get_phrase('update');?></button><br>
</div>
<?php echo form_close();?>
<?php endforeach; ?>