HOME


sh-3ll 1.0
DIR:/proc/self/root/proc/self/root/proc/thread-self/cwd/application/models/pages/
Upload File :
Current File : //proc/self/root/proc/self/root/proc/thread-self/cwd/application/models/pages/ContactModel.php
<?php
defined('BASEPATH') or exit('No direct script access allowed');

class ContactModel extends CI_Model
{

	public function getIDProcessing($id)
	{
		$this->db->where('sha1(contact_id)', $id);
		$this->db->from('contact');
		$query = $this->db->get();
		return $query->row();
	}
}