HEX
Server: nginx/1.27.1
System: Linux in-4 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: ilikadirect (1186)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v6964/school/public_html/school/application/views/backend/admin/exam_marks_sms.php
<div class="row">
    <div class="col-sm-12">
		<div class="panel panel-info">
            <div class="panel-heading"> <i class="fa fa-plus"></i>&nbsp;&nbsp;<?php echo get_phrase('Send Student Score');?></div>
                <div class="panel-body table-responsive">
			
                    <!----CREATION FORM STARTS---->

                	<?php echo form_open(base_url() . 'admin/exam_marks_sms/send/' , array('class' => 'form-horizontal form-groups-bordered validate','target'=>'_top', 'enctype' => 'multipart/form-data'));?>
                    
                            <div class="form-group">
                                    <label class="col-md-12" for="example-text"><?php echo get_phrase('Exam');?></label>
                                <div class="col-sm-12">
                                    <select name="exam_id" class="form-control select2" required>
                                        <option value=""><?php echo get_phrase('select_class');?></option>

                                        <?php $select_all_exams_from_model =  $this->crud_model->get_exams();
                                        foreach($select_all_exams_from_model as $key => $all_exams_selected_from_model):?>
                                        <option value="<?php echo $all_exams_selected_from_model['exam_id'];?>"><?php echo $all_exams_selected_from_model['name'];?></option>
                                        <?php endforeach;?>
                                </select>

                                </div>
                            </div>


                            <div class="form-group">
                                    <label class="col-md-12" for="example-text"><?php echo get_phrase('class');?></label>
                                <div class="col-sm-12">
                                    <select name="class_id"  class="form-control select2" required>
                                        <option value=""><?php echo get_phrase('select_class');?></option>

                                        <?php $select_all_classes_from_model =  $this->crud_model->get_classes();
                                        foreach($select_all_classes_from_model as $key => $all_classes_selected_from_model):?>
                                        <option value="<?php echo $all_classes_selected_from_model['class_id'];?>"><?php echo $all_classes_selected_from_model['name'];?></option>
                                        <?php endforeach;?>
                                </select>

                                </div>
                            </div>

								

                            <div class="form-group">
                            <label class="col-md-12" for="example-text"><?php echo get_phrase('Select Receiver');?></label>
                                <div class="col-sm-12">
                                    <select name="receiver"  class="form-control" required>
                                        <option value="parent"><?php echo get_phrase('Send to parent');?></option>
                                        <option value="student"><?php echo get_phrase('Send to student');?></option>
                                    </select>
                                </div>
                            </div>
                            
                        <div class="form-group text-center">
                            <button type="submit" class="btn"><i class="fa fa-search"></i>&nbsp;<?php echo get_phrase('Get Details');?></button>
                        </div>
		
                    </form>                
            </div>                
		</div>
	</div>
</div>