Skip to content

notyes/securimage_for_ci

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

securimage_for_ci

Install:

  • Download the Securimage Library from http://doublekai.org/files/Securimage_For_CI.zip
  • Copy file libraries / Securimage.php to application / libraries
  • Copy file config / Securimage.php to application / config
  • Copy dir views / fonts to application / views

if you want to quickstart test

  • Copy file controlls / welcome.php to application / controlls
  • Copy file controlls / image.php to application / controlls
  • Copy file views / test.html to application / views

Example:

Controlls

  • controllers / welcome.php class Welcome extends Controller { function Welcome(){ parent::Controller(); $this->load->library('securimage'); $this->load->helper('url'); $this->load->helper('html'); } function index(){ $this->load->view('test.html'); } function check(){ $inputCode = $this->input->post('imagecode'); if($this->securimage->check($inputCode) == true){ $data['result'] = 'true'; $this->load->view('test.html',$data); } else { $data['result'] = 'false'; $this->load->view('test.html',$data);
    } } }

  • controllers / image.php class Image extends Controller { function Image(){ parent::Controller(); $this->load->library('securimage');
    } function securimage(){ $this->securimage->show(); } }

Views

  • views / test.html

Signature

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages