Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

public function fetch_more_data() { $offset = $this->input->get('offset'); $limit = ..

Decoded Output download

<?  public function fetch_more_data() { 
		$offset = $this->input->get('offset'); 
		$limit = $this->input->get('limit'); 
	 
		$this->load->model('Blog_model'); 
	 
		$blog_params = array( 
			'orderby' => 'blog.id DESC', // Sort by blog ID in descending order 
		); 
	 
		$data['res'] = $this->Blog_model->get_blog($limit, $offset, FALSE, $blog_params); 
	 
		$this->load->view('blog_data', $data); 
		//print_r($data); 
	} ?>

Did this file decode correctly?

Original Code

public function fetch_more_data() {
		$offset = $this->input->get('offset');
		$limit = $this->input->get('limit');
	
		$this->load->model('Blog_model');
	
		$blog_params = array(
			'orderby' => 'blog.id DESC', // Sort by blog ID in descending order
		);
	
		$data['res'] = $this->Blog_model->get_blog($limit, $offset, FALSE, $blog_params);
	
		$this->load->view('blog_data', $data);
		//print_r($data);
	}

Function Calls

None

Variables

None

Stats

MD5 fe98470b45df07205c62fe3a65710818
Eval Count 0
Decode Time 64 ms