Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class Profile extends CI_Controller {
- public function __construct()
- {
- parent::__construct();
- $this->load->model('profile_qry');
- }
- public function index()
- {
- $this->load->view('index');
- }
- public function gantiFotoProfil()
- {
- $result = $this->profile_qry->updateFoto();
- print($result['message']);
- }
- }
- /* End of file controllername.php */
- /* Location: ./application/controllers/controllername.php */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement