Wednesday, 15 June 2016

CodeIgniter General Topics

  • CodeIgniter URLs
  • Controllers
  • Reserved Names
  • Views
  • Models
  • Helpers
  • Using CodeIgniter Libraries
  • Creating Libraries
  • Using CodeIgniter Drivers
  • Creating Drivers
  • Creating Core System Classes
  • Creating Ancillary Classes
  • Hooks - Extending the Framework Core
  • Auto-loading Resources
  • Common Functions
  • Compatibility Functions
  • URI Routing
  • Error Handling
  • Caching
  • Profiling Your Application
  • Running via the CLI
  • Managing your Applications
  • Handling Multiple Environments
  • Alternate PHP Syntax for View Files
  • Security
  • PHP Style Guide

No comments:

Post a Comment

Git merge branch to another branch

$ git checkout develop $ git pull $ git checkout test-branch $ git merge develop $ git push