Advertisement
shaashwato1308

CodeIgniter - Custom Helper Template

Aug 17th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php if (!defined('BASEPATH')) exit('No direct script access allowed');
  2. if(!function_exists('echo_my_name'))
  3. {
  4.     function echo_my_name(){
  5.         $ci = get_instance();
  6.         echo "Syeed Chowdhury";
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement