├── README.md
├── codeigniter
├── codeIgniter-with-ajax
│ ├── .htaccess
│ ├── DCO.txt
│ ├── application
│ │ ├── .htaccess
│ │ ├── cache
│ │ │ ├── .htaccess
│ │ │ └── index.html
│ │ ├── config
│ │ │ ├── autoload.php
│ │ │ ├── config.php
│ │ │ ├── constants.php
│ │ │ ├── database.php
│ │ │ ├── doctypes.php
│ │ │ ├── foreign_chars.php
│ │ │ ├── hooks.php
│ │ │ ├── index.html
│ │ │ ├── memcached.php
│ │ │ ├── migration.php
│ │ │ ├── mimes.php
│ │ │ ├── profiler.php
│ │ │ ├── routes.php
│ │ │ ├── smileys.php
│ │ │ └── user_agents.php
│ │ ├── controllers
│ │ │ └── Tasks.php
│ │ ├── core
│ │ │ └── index.html
│ │ ├── helpers
│ │ │ └── index.html
│ │ ├── hooks
│ │ │ └── index.html
│ │ ├── index.html
│ │ ├── language
│ │ │ ├── english
│ │ │ │ └── index.html
│ │ │ └── index.html
│ │ ├── libraries
│ │ │ └── index.html
│ │ ├── logs
│ │ │ └── index.html
│ │ ├── models
│ │ │ ├── Tasks_modal.php
│ │ │ └── index.html
│ │ ├── third_party
│ │ │ └── index.html
│ │ └── views
│ │ │ ├── errors
│ │ │ ├── cli
│ │ │ │ ├── error_404.php
│ │ │ │ ├── error_db.php
│ │ │ │ ├── error_exception.php
│ │ │ │ ├── error_general.php
│ │ │ │ ├── error_php.php
│ │ │ │ └── index.html
│ │ │ ├── html
│ │ │ │ ├── error_404.php
│ │ │ │ ├── error_db.php
│ │ │ │ ├── error_exception.php
│ │ │ │ ├── error_general.php
│ │ │ │ ├── error_php.php
│ │ │ │ └── index.html
│ │ │ └── index.html
│ │ │ └── tasks
│ │ │ ├── data.php
│ │ │ ├── delete.php
│ │ │ ├── edit.php
│ │ │ ├── footer.php
│ │ │ ├── header.php
│ │ │ ├── index.php
│ │ │ └── new.php
│ ├── composer.json
│ ├── contributing.md
│ ├── index.php
│ ├── license.txt
│ ├── public
│ │ ├── css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── font-awesome.css
│ │ │ └── style.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ │ └── js
│ │ │ ├── code.js
│ │ │ └── jquery-1.7.2.min.js
│ ├── readme.txr
│ ├── system
│ │ ├── .htaccess
│ │ ├── core
│ │ │ ├── Benchmark.php
│ │ │ ├── CodeIgniter.php
│ │ │ ├── Common.php
│ │ │ ├── Config.php
│ │ │ ├── Controller.php
│ │ │ ├── Exceptions.php
│ │ │ ├── Hooks.php
│ │ │ ├── Input.php
│ │ │ ├── Lang.php
│ │ │ ├── Loader.php
│ │ │ ├── Log.php
│ │ │ ├── Model.php
│ │ │ ├── Output.php
│ │ │ ├── Router.php
│ │ │ ├── Security.php
│ │ │ ├── URI.php
│ │ │ ├── Utf8.php
│ │ │ ├── compat
│ │ │ │ ├── hash.php
│ │ │ │ ├── index.html
│ │ │ │ ├── mbstring.php
│ │ │ │ ├── password.php
│ │ │ │ └── standard.php
│ │ │ └── index.html
│ │ ├── database
│ │ │ ├── DB.php
│ │ │ ├── DB_cache.php
│ │ │ ├── DB_driver.php
│ │ │ ├── DB_forge.php
│ │ │ ├── DB_query_builder.php
│ │ │ ├── DB_result.php
│ │ │ ├── DB_utility.php
│ │ │ ├── drivers
│ │ │ │ ├── cubrid
│ │ │ │ │ ├── cubrid_driver.php
│ │ │ │ │ ├── cubrid_forge.php
│ │ │ │ │ ├── cubrid_result.php
│ │ │ │ │ ├── cubrid_utility.php
│ │ │ │ │ └── index.html
│ │ │ │ ├── ibase
│ │ │ │ │ ├── ibase_driver.php
│ │ │ │ │ ├── ibase_forge.php
│ │ │ │ │ ├── ibase_result.php
│ │ │ │ │ ├── ibase_utility.php
│ │ │ │ │ └── index.html
│ │ │ │ ├── index.html
│ │ │ │ ├── mssql
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── mssql_driver.php
│ │ │ │ │ ├── mssql_forge.php
│ │ │ │ │ ├── mssql_result.php
│ │ │ │ │ └── mssql_utility.php
│ │ │ │ ├── mysql
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── mysql_driver.php
│ │ │ │ │ ├── mysql_forge.php
│ │ │ │ │ ├── mysql_result.php
│ │ │ │ │ └── mysql_utility.php
│ │ │ │ ├── mysqli
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── mysqli_driver.php
│ │ │ │ │ ├── mysqli_forge.php
│ │ │ │ │ ├── mysqli_result.php
│ │ │ │ │ └── mysqli_utility.php
│ │ │ │ ├── oci8
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── oci8_driver.php
│ │ │ │ │ ├── oci8_forge.php
│ │ │ │ │ ├── oci8_result.php
│ │ │ │ │ └── oci8_utility.php
│ │ │ │ ├── odbc
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── odbc_driver.php
│ │ │ │ │ ├── odbc_forge.php
│ │ │ │ │ ├── odbc_result.php
│ │ │ │ │ └── odbc_utility.php
│ │ │ │ ├── pdo
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── pdo_driver.php
│ │ │ │ │ ├── pdo_forge.php
│ │ │ │ │ ├── pdo_result.php
│ │ │ │ │ ├── pdo_utility.php
│ │ │ │ │ └── subdrivers
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── pdo_4d_driver.php
│ │ │ │ │ │ ├── pdo_4d_forge.php
│ │ │ │ │ │ ├── pdo_cubrid_driver.php
│ │ │ │ │ │ ├── pdo_cubrid_forge.php
│ │ │ │ │ │ ├── pdo_dblib_driver.php
│ │ │ │ │ │ ├── pdo_dblib_forge.php
│ │ │ │ │ │ ├── pdo_firebird_driver.php
│ │ │ │ │ │ ├── pdo_firebird_forge.php
│ │ │ │ │ │ ├── pdo_ibm_driver.php
│ │ │ │ │ │ ├── pdo_ibm_forge.php
│ │ │ │ │ │ ├── pdo_informix_driver.php
│ │ │ │ │ │ ├── pdo_informix_forge.php
│ │ │ │ │ │ ├── pdo_mysql_driver.php
│ │ │ │ │ │ ├── pdo_mysql_forge.php
│ │ │ │ │ │ ├── pdo_oci_driver.php
│ │ │ │ │ │ ├── pdo_oci_forge.php
│ │ │ │ │ │ ├── pdo_odbc_driver.php
│ │ │ │ │ │ ├── pdo_odbc_forge.php
│ │ │ │ │ │ ├── pdo_pgsql_driver.php
│ │ │ │ │ │ ├── pdo_pgsql_forge.php
│ │ │ │ │ │ ├── pdo_sqlite_driver.php
│ │ │ │ │ │ ├── pdo_sqlite_forge.php
│ │ │ │ │ │ ├── pdo_sqlsrv_driver.php
│ │ │ │ │ │ └── pdo_sqlsrv_forge.php
│ │ │ │ ├── postgre
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── postgre_driver.php
│ │ │ │ │ ├── postgre_forge.php
│ │ │ │ │ ├── postgre_result.php
│ │ │ │ │ └── postgre_utility.php
│ │ │ │ ├── sqlite
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── sqlite_driver.php
│ │ │ │ │ ├── sqlite_forge.php
│ │ │ │ │ ├── sqlite_result.php
│ │ │ │ │ └── sqlite_utility.php
│ │ │ │ ├── sqlite3
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── sqlite3_driver.php
│ │ │ │ │ ├── sqlite3_forge.php
│ │ │ │ │ ├── sqlite3_result.php
│ │ │ │ │ └── sqlite3_utility.php
│ │ │ │ └── sqlsrv
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── sqlsrv_driver.php
│ │ │ │ │ ├── sqlsrv_forge.php
│ │ │ │ │ ├── sqlsrv_result.php
│ │ │ │ │ └── sqlsrv_utility.php
│ │ │ └── index.html
│ │ ├── fonts
│ │ │ ├── index.html
│ │ │ └── texb.ttf
│ │ ├── helpers
│ │ │ ├── array_helper.php
│ │ │ ├── captcha_helper.php
│ │ │ ├── cookie_helper.php
│ │ │ ├── date_helper.php
│ │ │ ├── directory_helper.php
│ │ │ ├── download_helper.php
│ │ │ ├── email_helper.php
│ │ │ ├── file_helper.php
│ │ │ ├── form_helper.php
│ │ │ ├── html_helper.php
│ │ │ ├── index.html
│ │ │ ├── inflector_helper.php
│ │ │ ├── language_helper.php
│ │ │ ├── number_helper.php
│ │ │ ├── path_helper.php
│ │ │ ├── security_helper.php
│ │ │ ├── smiley_helper.php
│ │ │ ├── string_helper.php
│ │ │ ├── text_helper.php
│ │ │ ├── typography_helper.php
│ │ │ ├── url_helper.php
│ │ │ └── xml_helper.php
│ │ ├── index.html
│ │ ├── language
│ │ │ ├── english
│ │ │ │ ├── calendar_lang.php
│ │ │ │ ├── date_lang.php
│ │ │ │ ├── db_lang.php
│ │ │ │ ├── email_lang.php
│ │ │ │ ├── form_validation_lang.php
│ │ │ │ ├── ftp_lang.php
│ │ │ │ ├── imglib_lang.php
│ │ │ │ ├── index.html
│ │ │ │ ├── migration_lang.php
│ │ │ │ ├── number_lang.php
│ │ │ │ ├── pagination_lang.php
│ │ │ │ ├── profiler_lang.php
│ │ │ │ ├── unit_test_lang.php
│ │ │ │ └── upload_lang.php
│ │ │ └── index.html
│ │ └── libraries
│ │ │ ├── Cache
│ │ │ ├── Cache.php
│ │ │ ├── drivers
│ │ │ │ ├── Cache_apc.php
│ │ │ │ ├── Cache_dummy.php
│ │ │ │ ├── Cache_file.php
│ │ │ │ ├── Cache_memcached.php
│ │ │ │ ├── Cache_redis.php
│ │ │ │ ├── Cache_wincache.php
│ │ │ │ └── index.html
│ │ │ └── index.html
│ │ │ ├── Calendar.php
│ │ │ ├── Cart.php
│ │ │ ├── Driver.php
│ │ │ ├── Email.php
│ │ │ ├── Encrypt.php
│ │ │ ├── Encryption.php
│ │ │ ├── Form_validation.php
│ │ │ ├── Ftp.php
│ │ │ ├── Image_lib.php
│ │ │ ├── Javascript.php
│ │ │ ├── Javascript
│ │ │ ├── Jquery.php
│ │ │ └── index.html
│ │ │ ├── Migration.php
│ │ │ ├── Pagination.php
│ │ │ ├── Parser.php
│ │ │ ├── Profiler.php
│ │ │ ├── Session
│ │ │ ├── Session.php
│ │ │ ├── SessionHandlerInterface.php
│ │ │ ├── Session_driver.php
│ │ │ ├── drivers
│ │ │ │ ├── Session_database_driver.php
│ │ │ │ ├── Session_files_driver.php
│ │ │ │ ├── Session_memcached_driver.php
│ │ │ │ ├── Session_redis_driver.php
│ │ │ │ └── index.html
│ │ │ └── index.html
│ │ │ ├── Table.php
│ │ │ ├── Trackback.php
│ │ │ ├── Typography.php
│ │ │ ├── Unit_test.php
│ │ │ ├── Upload.php
│ │ │ ├── User_agent.php
│ │ │ ├── Xmlrpc.php
│ │ │ ├── Xmlrpcs.php
│ │ │ ├── Zip.php
│ │ │ └── index.html
│ ├── tests
│ │ ├── Bootstrap.php
│ │ ├── README.md
│ │ ├── codeigniter
│ │ │ ├── Setup_test.php
│ │ │ ├── core
│ │ │ │ ├── Benchmark_test.php
│ │ │ │ ├── Common_test.php
│ │ │ │ ├── Config_test.php
│ │ │ │ ├── Input_test.php
│ │ │ │ ├── Lang_test.php
│ │ │ │ ├── Loader_test.php
│ │ │ │ ├── Model_test.php
│ │ │ │ ├── Output_test.php
│ │ │ │ ├── Security_test.php
│ │ │ │ ├── URI_test.php
│ │ │ │ ├── Utf8_test.php
│ │ │ │ └── compat
│ │ │ │ │ ├── hash_test.php
│ │ │ │ │ ├── mbstring_test.php
│ │ │ │ │ ├── password_test.php
│ │ │ │ │ └── standard_test.php
│ │ │ ├── database
│ │ │ │ ├── DB_driver_test.php
│ │ │ │ ├── DB_test.php
│ │ │ │ └── query_builder
│ │ │ │ │ ├── count_test.php
│ │ │ │ │ ├── delete_test.php
│ │ │ │ │ ├── distinct_test.php
│ │ │ │ │ ├── empty_test.php
│ │ │ │ │ ├── escape_test.php
│ │ │ │ │ ├── from_test.php
│ │ │ │ │ ├── get_test.php
│ │ │ │ │ ├── group_test.php
│ │ │ │ │ ├── insert_test.php
│ │ │ │ │ ├── join_test.php
│ │ │ │ │ ├── like_test.php
│ │ │ │ │ ├── limit_test.php
│ │ │ │ │ ├── order_test.php
│ │ │ │ │ ├── select_test.php
│ │ │ │ │ ├── truncate_test.php
│ │ │ │ │ ├── update_test.php
│ │ │ │ │ └── where_test.php
│ │ │ ├── helpers
│ │ │ │ ├── array_helper_test.php
│ │ │ │ ├── captcha_helper_test.php
│ │ │ │ ├── cookie_helper_test.php
│ │ │ │ ├── date_helper_test.php
│ │ │ │ ├── directory_helper_test.php
│ │ │ │ ├── download_helper_test.php
│ │ │ │ ├── email_helper_test.php
│ │ │ │ ├── file_helper_test.php
│ │ │ │ ├── form_helper_test.php
│ │ │ │ ├── html_helper_test.php
│ │ │ │ ├── inflector_helper_test.php
│ │ │ │ ├── language_helper_test.php
│ │ │ │ ├── number_helper_test.php
│ │ │ │ ├── path_helper_test.php
│ │ │ │ ├── security_helper_test.php
│ │ │ │ ├── string_helper_test.php
│ │ │ │ ├── text_helper_test.php
│ │ │ │ ├── url_helper_test.php
│ │ │ │ └── xml_helper_test.php
│ │ │ └── libraries
│ │ │ │ ├── Calendar_test.php
│ │ │ │ ├── Driver_test.php
│ │ │ │ ├── Encrypt_test.php
│ │ │ │ ├── Encryption_test.php
│ │ │ │ ├── Parser_test.php
│ │ │ │ ├── Session_test.php
│ │ │ │ ├── Table_test.php
│ │ │ │ ├── Typography_test.php
│ │ │ │ ├── Upload_test.php
│ │ │ │ └── Useragent_test.php
│ │ ├── mocks
│ │ │ ├── autoloader.php
│ │ │ ├── ci_testcase.php
│ │ │ ├── ci_testconfig.php
│ │ │ ├── core
│ │ │ │ ├── common.php
│ │ │ │ ├── input.php
│ │ │ │ ├── security.php
│ │ │ │ ├── uri.php
│ │ │ │ └── utf8.php
│ │ │ ├── database
│ │ │ │ ├── ci_test.sqlite
│ │ │ │ ├── config
│ │ │ │ │ ├── mysql.php
│ │ │ │ │ ├── mysqli.php
│ │ │ │ │ ├── pdo
│ │ │ │ │ │ ├── mysql.php
│ │ │ │ │ │ ├── pgsql.php
│ │ │ │ │ │ └── sqlite.php
│ │ │ │ │ ├── pgsql.php
│ │ │ │ │ └── sqlite.php
│ │ │ │ ├── db.php
│ │ │ │ ├── db
│ │ │ │ │ └── driver.php
│ │ │ │ ├── drivers
│ │ │ │ │ ├── mysql.php
│ │ │ │ │ ├── mysqli.php
│ │ │ │ │ ├── pdo.php
│ │ │ │ │ ├── postgre.php
│ │ │ │ │ └── sqlite.php
│ │ │ │ └── schema
│ │ │ │ │ └── skeleton.php
│ │ │ ├── libraries
│ │ │ │ ├── driver.php
│ │ │ │ ├── encrypt.php
│ │ │ │ ├── encryption.php
│ │ │ │ ├── session.php
│ │ │ │ └── table.php
│ │ │ └── uploads
│ │ │ │ └── ci_logo.gif
│ │ ├── phpunit.xml
│ │ └── travis
│ │ │ ├── mysql.phpunit.xml
│ │ │ ├── mysqli.phpunit.xml
│ │ │ ├── pdo
│ │ │ ├── mysql.phpunit.xml
│ │ │ ├── pgsql.phpunit.xml
│ │ │ └── sqlite.phpunit.xml
│ │ │ ├── pgsql.phpunit.xml
│ │ │ └── sqlite.phpunit.xml
│ └── user_guide
│ │ ├── DCO.html
│ │ ├── _downloads
│ │ └── ELDocs.tmbundle.zip
│ │ ├── _images
│ │ ├── appflowchart.gif
│ │ └── smile.gif
│ │ ├── _static
│ │ ├── ajax-loader.gif
│ │ ├── basic.css
│ │ ├── ci-icon.ico
│ │ ├── comment-bright.png
│ │ ├── comment-close.png
│ │ ├── comment.png
│ │ ├── css
│ │ │ ├── badge_only.css
│ │ │ └── theme.css
│ │ ├── doctools.js
│ │ ├── down-pressed.png
│ │ ├── down.png
│ │ ├── file.png
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ │ ├── jquery.js
│ │ ├── js
│ │ │ └── theme.js
│ │ ├── minus.png
│ │ ├── plus.png
│ │ ├── pygments.css
│ │ ├── searchtools.js
│ │ ├── underscore.js
│ │ ├── up-pressed.png
│ │ ├── up.png
│ │ └── websupport.js
│ │ ├── changelog.html
│ │ ├── contributing
│ │ └── index.html
│ │ ├── database
│ │ ├── caching.html
│ │ ├── call_function.html
│ │ ├── configuration.html
│ │ ├── connecting.html
│ │ ├── db_driver_reference.html
│ │ ├── examples.html
│ │ ├── forge.html
│ │ ├── helpers.html
│ │ ├── index.html
│ │ ├── metadata.html
│ │ ├── queries.html
│ │ ├── query_builder.html
│ │ ├── results.html
│ │ ├── transactions.html
│ │ └── utilities.html
│ │ ├── documentation
│ │ └── index.html
│ │ ├── general
│ │ ├── alternative_php.html
│ │ ├── ancillary_classes.html
│ │ ├── autoloader.html
│ │ ├── caching.html
│ │ ├── cli.html
│ │ ├── common_functions.html
│ │ ├── compatibility_functions.html
│ │ ├── controllers.html
│ │ ├── core_classes.html
│ │ ├── creating_drivers.html
│ │ ├── creating_libraries.html
│ │ ├── credits.html
│ │ ├── drivers.html
│ │ ├── environments.html
│ │ ├── errors.html
│ │ ├── helpers.html
│ │ ├── hooks.html
│ │ ├── index.html
│ │ ├── libraries.html
│ │ ├── managing_apps.html
│ │ ├── models.html
│ │ ├── profiling.html
│ │ ├── requirements.html
│ │ ├── reserved_names.html
│ │ ├── routing.html
│ │ ├── security.html
│ │ ├── styleguide.html
│ │ ├── urls.html
│ │ ├── views.html
│ │ └── welcome.html
│ │ ├── genindex.html
│ │ ├── helpers
│ │ ├── array_helper.html
│ │ ├── captcha_helper.html
│ │ ├── cookie_helper.html
│ │ ├── date_helper.html
│ │ ├── directory_helper.html
│ │ ├── download_helper.html
│ │ ├── email_helper.html
│ │ ├── file_helper.html
│ │ ├── form_helper.html
│ │ ├── html_helper.html
│ │ ├── index.html
│ │ ├── inflector_helper.html
│ │ ├── language_helper.html
│ │ ├── number_helper.html
│ │ ├── path_helper.html
│ │ ├── security_helper.html
│ │ ├── smiley_helper.html
│ │ ├── string_helper.html
│ │ ├── text_helper.html
│ │ ├── typography_helper.html
│ │ ├── url_helper.html
│ │ └── xml_helper.html
│ │ ├── index.html
│ │ ├── installation
│ │ ├── downloads.html
│ │ ├── index.html
│ │ ├── troubleshooting.html
│ │ ├── upgrade_120.html
│ │ ├── upgrade_130.html
│ │ ├── upgrade_131.html
│ │ ├── upgrade_132.html
│ │ ├── upgrade_133.html
│ │ ├── upgrade_140.html
│ │ ├── upgrade_141.html
│ │ ├── upgrade_150.html
│ │ ├── upgrade_152.html
│ │ ├── upgrade_153.html
│ │ ├── upgrade_154.html
│ │ ├── upgrade_160.html
│ │ ├── upgrade_161.html
│ │ ├── upgrade_162.html
│ │ ├── upgrade_163.html
│ │ ├── upgrade_170.html
│ │ ├── upgrade_171.html
│ │ ├── upgrade_172.html
│ │ ├── upgrade_200.html
│ │ ├── upgrade_201.html
│ │ ├── upgrade_202.html
│ │ ├── upgrade_203.html
│ │ ├── upgrade_210.html
│ │ ├── upgrade_211.html
│ │ ├── upgrade_212.html
│ │ ├── upgrade_213.html
│ │ ├── upgrade_214.html
│ │ ├── upgrade_220.html
│ │ ├── upgrade_221.html
│ │ ├── upgrade_300.html
│ │ ├── upgrade_b11.html
│ │ └── upgrading.html
│ │ ├── libraries
│ │ ├── benchmark.html
│ │ ├── caching.html
│ │ ├── calendar.html
│ │ ├── cart.html
│ │ ├── config.html
│ │ ├── email.html
│ │ ├── encrypt.html
│ │ ├── encryption.html
│ │ ├── file_uploading.html
│ │ ├── form_validation.html
│ │ ├── ftp.html
│ │ ├── image_lib.html
│ │ ├── index.html
│ │ ├── input.html
│ │ ├── javascript.html
│ │ ├── language.html
│ │ ├── loader.html
│ │ ├── migration.html
│ │ ├── output.html
│ │ ├── pagination.html
│ │ ├── parser.html
│ │ ├── security.html
│ │ ├── sessions.html
│ │ ├── table.html
│ │ ├── trackback.html
│ │ ├── typography.html
│ │ ├── unit_testing.html
│ │ ├── uri.html
│ │ ├── user_agent.html
│ │ ├── xmlrpc.html
│ │ └── zip.html
│ │ ├── license.html
│ │ ├── objects.inv
│ │ ├── overview
│ │ ├── appflow.html
│ │ ├── at_a_glance.html
│ │ ├── features.html
│ │ ├── getting_started.html
│ │ ├── goals.html
│ │ ├── index.html
│ │ └── mvc.html
│ │ ├── search.html
│ │ ├── searchindex.js
│ │ └── tutorial
│ │ ├── conclusion.html
│ │ ├── create_news_items.html
│ │ ├── index.html
│ │ ├── news_section.html
│ │ └── static_pages.html
└── codeIgniter
│ ├── .htaccess
│ ├── DCO.txt
│ ├── application
│ ├── .htaccess
│ ├── cache
│ │ ├── .htaccess
│ │ └── index.html
│ ├── config
│ │ ├── autoload.php
│ │ ├── config.php
│ │ ├── constants.php
│ │ ├── database.php
│ │ ├── doctypes.php
│ │ ├── foreign_chars.php
│ │ ├── hooks.php
│ │ ├── index.html
│ │ ├── memcached.php
│ │ ├── migration.php
│ │ ├── mimes.php
│ │ ├── profiler.php
│ │ ├── routes.php
│ │ ├── smileys.php
│ │ └── user_agents.php
│ ├── controllers
│ │ └── Tasks.php
│ ├── core
│ │ └── index.html
│ ├── helpers
│ │ └── index.html
│ ├── hooks
│ │ └── index.html
│ ├── index.html
│ ├── language
│ │ ├── english
│ │ │ └── index.html
│ │ └── index.html
│ ├── libraries
│ │ └── index.html
│ ├── logs
│ │ └── index.html
│ ├── models
│ │ ├── Tasks_modal.php
│ │ └── index.html
│ ├── third_party
│ │ └── index.html
│ └── views
│ │ ├── errors
│ │ ├── cli
│ │ │ ├── error_404.php
│ │ │ ├── error_db.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_php.php
│ │ │ └── index.html
│ │ ├── html
│ │ │ ├── error_404.php
│ │ │ ├── error_db.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_php.php
│ │ │ └── index.html
│ │ └── index.html
│ │ └── tasks
│ │ ├── edit.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── index.php
│ │ └── new.php
│ ├── composer.json
│ ├── contributing.md
│ ├── index.php
│ ├── license.txt
│ ├── public
│ ├── css
│ │ ├── bootstrap.min.css
│ │ ├── font-awesome.css
│ │ └── style.css
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ └── fontawesome-webfont.woff
│ └── js
│ │ ├── code.js
│ │ └── jquery-1.7.2.min.js
│ ├── system
│ ├── .htaccess
│ ├── core
│ │ ├── Benchmark.php
│ │ ├── CodeIgniter.php
│ │ ├── Common.php
│ │ ├── Config.php
│ │ ├── Controller.php
│ │ ├── Exceptions.php
│ │ ├── Hooks.php
│ │ ├── Input.php
│ │ ├── Lang.php
│ │ ├── Loader.php
│ │ ├── Log.php
│ │ ├── Model.php
│ │ ├── Output.php
│ │ ├── Router.php
│ │ ├── Security.php
│ │ ├── URI.php
│ │ ├── Utf8.php
│ │ ├── compat
│ │ │ ├── hash.php
│ │ │ ├── index.html
│ │ │ ├── mbstring.php
│ │ │ ├── password.php
│ │ │ └── standard.php
│ │ └── index.html
│ ├── database
│ │ ├── DB.php
│ │ ├── DB_cache.php
│ │ ├── DB_driver.php
│ │ ├── DB_forge.php
│ │ ├── DB_query_builder.php
│ │ ├── DB_result.php
│ │ ├── DB_utility.php
│ │ ├── drivers
│ │ │ ├── cubrid
│ │ │ │ ├── cubrid_driver.php
│ │ │ │ ├── cubrid_forge.php
│ │ │ │ ├── cubrid_result.php
│ │ │ │ ├── cubrid_utility.php
│ │ │ │ └── index.html
│ │ │ ├── ibase
│ │ │ │ ├── ibase_driver.php
│ │ │ │ ├── ibase_forge.php
│ │ │ │ ├── ibase_result.php
│ │ │ │ ├── ibase_utility.php
│ │ │ │ └── index.html
│ │ │ ├── index.html
│ │ │ ├── mssql
│ │ │ │ ├── index.html
│ │ │ │ ├── mssql_driver.php
│ │ │ │ ├── mssql_forge.php
│ │ │ │ ├── mssql_result.php
│ │ │ │ └── mssql_utility.php
│ │ │ ├── mysql
│ │ │ │ ├── index.html
│ │ │ │ ├── mysql_driver.php
│ │ │ │ ├── mysql_forge.php
│ │ │ │ ├── mysql_result.php
│ │ │ │ └── mysql_utility.php
│ │ │ ├── mysqli
│ │ │ │ ├── index.html
│ │ │ │ ├── mysqli_driver.php
│ │ │ │ ├── mysqli_forge.php
│ │ │ │ ├── mysqli_result.php
│ │ │ │ └── mysqli_utility.php
│ │ │ ├── oci8
│ │ │ │ ├── index.html
│ │ │ │ ├── oci8_driver.php
│ │ │ │ ├── oci8_forge.php
│ │ │ │ ├── oci8_result.php
│ │ │ │ └── oci8_utility.php
│ │ │ ├── odbc
│ │ │ │ ├── index.html
│ │ │ │ ├── odbc_driver.php
│ │ │ │ ├── odbc_forge.php
│ │ │ │ ├── odbc_result.php
│ │ │ │ └── odbc_utility.php
│ │ │ ├── pdo
│ │ │ │ ├── index.html
│ │ │ │ ├── pdo_driver.php
│ │ │ │ ├── pdo_forge.php
│ │ │ │ ├── pdo_result.php
│ │ │ │ ├── pdo_utility.php
│ │ │ │ └── subdrivers
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── pdo_4d_driver.php
│ │ │ │ │ ├── pdo_4d_forge.php
│ │ │ │ │ ├── pdo_cubrid_driver.php
│ │ │ │ │ ├── pdo_cubrid_forge.php
│ │ │ │ │ ├── pdo_dblib_driver.php
│ │ │ │ │ ├── pdo_dblib_forge.php
│ │ │ │ │ ├── pdo_firebird_driver.php
│ │ │ │ │ ├── pdo_firebird_forge.php
│ │ │ │ │ ├── pdo_ibm_driver.php
│ │ │ │ │ ├── pdo_ibm_forge.php
│ │ │ │ │ ├── pdo_informix_driver.php
│ │ │ │ │ ├── pdo_informix_forge.php
│ │ │ │ │ ├── pdo_mysql_driver.php
│ │ │ │ │ ├── pdo_mysql_forge.php
│ │ │ │ │ ├── pdo_oci_driver.php
│ │ │ │ │ ├── pdo_oci_forge.php
│ │ │ │ │ ├── pdo_odbc_driver.php
│ │ │ │ │ ├── pdo_odbc_forge.php
│ │ │ │ │ ├── pdo_pgsql_driver.php
│ │ │ │ │ ├── pdo_pgsql_forge.php
│ │ │ │ │ ├── pdo_sqlite_driver.php
│ │ │ │ │ ├── pdo_sqlite_forge.php
│ │ │ │ │ ├── pdo_sqlsrv_driver.php
│ │ │ │ │ └── pdo_sqlsrv_forge.php
│ │ │ ├── postgre
│ │ │ │ ├── index.html
│ │ │ │ ├── postgre_driver.php
│ │ │ │ ├── postgre_forge.php
│ │ │ │ ├── postgre_result.php
│ │ │ │ └── postgre_utility.php
│ │ │ ├── sqlite
│ │ │ │ ├── index.html
│ │ │ │ ├── sqlite_driver.php
│ │ │ │ ├── sqlite_forge.php
│ │ │ │ ├── sqlite_result.php
│ │ │ │ └── sqlite_utility.php
│ │ │ ├── sqlite3
│ │ │ │ ├── index.html
│ │ │ │ ├── sqlite3_driver.php
│ │ │ │ ├── sqlite3_forge.php
│ │ │ │ ├── sqlite3_result.php
│ │ │ │ └── sqlite3_utility.php
│ │ │ └── sqlsrv
│ │ │ │ ├── index.html
│ │ │ │ ├── sqlsrv_driver.php
│ │ │ │ ├── sqlsrv_forge.php
│ │ │ │ ├── sqlsrv_result.php
│ │ │ │ └── sqlsrv_utility.php
│ │ └── index.html
│ ├── fonts
│ │ ├── index.html
│ │ └── texb.ttf
│ ├── helpers
│ │ ├── array_helper.php
│ │ ├── captcha_helper.php
│ │ ├── cookie_helper.php
│ │ ├── date_helper.php
│ │ ├── directory_helper.php
│ │ ├── download_helper.php
│ │ ├── email_helper.php
│ │ ├── file_helper.php
│ │ ├── form_helper.php
│ │ ├── html_helper.php
│ │ ├── index.html
│ │ ├── inflector_helper.php
│ │ ├── language_helper.php
│ │ ├── number_helper.php
│ │ ├── path_helper.php
│ │ ├── security_helper.php
│ │ ├── smiley_helper.php
│ │ ├── string_helper.php
│ │ ├── text_helper.php
│ │ ├── typography_helper.php
│ │ ├── url_helper.php
│ │ └── xml_helper.php
│ ├── index.html
│ ├── language
│ │ ├── english
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ └── index.html
│ └── libraries
│ │ ├── Cache
│ │ ├── Cache.php
│ │ ├── drivers
│ │ │ ├── Cache_apc.php
│ │ │ ├── Cache_dummy.php
│ │ │ ├── Cache_file.php
│ │ │ ├── Cache_memcached.php
│ │ │ ├── Cache_redis.php
│ │ │ ├── Cache_wincache.php
│ │ │ └── index.html
│ │ └── index.html
│ │ ├── Calendar.php
│ │ ├── Cart.php
│ │ ├── Driver.php
│ │ ├── Email.php
│ │ ├── Encrypt.php
│ │ ├── Encryption.php
│ │ ├── Form_validation.php
│ │ ├── Ftp.php
│ │ ├── Image_lib.php
│ │ ├── Javascript.php
│ │ ├── Javascript
│ │ ├── Jquery.php
│ │ └── index.html
│ │ ├── Migration.php
│ │ ├── Pagination.php
│ │ ├── Parser.php
│ │ ├── Profiler.php
│ │ ├── Session
│ │ ├── Session.php
│ │ ├── SessionHandlerInterface.php
│ │ ├── Session_driver.php
│ │ ├── drivers
│ │ │ ├── Session_database_driver.php
│ │ │ ├── Session_files_driver.php
│ │ │ ├── Session_memcached_driver.php
│ │ │ ├── Session_redis_driver.php
│ │ │ └── index.html
│ │ └── index.html
│ │ ├── Table.php
│ │ ├── Trackback.php
│ │ ├── Typography.php
│ │ ├── Unit_test.php
│ │ ├── Upload.php
│ │ ├── User_agent.php
│ │ ├── Xmlrpc.php
│ │ ├── Xmlrpcs.php
│ │ ├── Zip.php
│ │ └── index.html
│ ├── tests
│ ├── Bootstrap.php
│ ├── README.md
│ ├── codeigniter
│ │ ├── Setup_test.php
│ │ ├── core
│ │ │ ├── Benchmark_test.php
│ │ │ ├── Common_test.php
│ │ │ ├── Config_test.php
│ │ │ ├── Input_test.php
│ │ │ ├── Lang_test.php
│ │ │ ├── Loader_test.php
│ │ │ ├── Model_test.php
│ │ │ ├── Output_test.php
│ │ │ ├── Security_test.php
│ │ │ ├── URI_test.php
│ │ │ ├── Utf8_test.php
│ │ │ └── compat
│ │ │ │ ├── hash_test.php
│ │ │ │ ├── mbstring_test.php
│ │ │ │ ├── password_test.php
│ │ │ │ └── standard_test.php
│ │ ├── database
│ │ │ ├── DB_driver_test.php
│ │ │ ├── DB_test.php
│ │ │ └── query_builder
│ │ │ │ ├── count_test.php
│ │ │ │ ├── delete_test.php
│ │ │ │ ├── distinct_test.php
│ │ │ │ ├── empty_test.php
│ │ │ │ ├── escape_test.php
│ │ │ │ ├── from_test.php
│ │ │ │ ├── get_test.php
│ │ │ │ ├── group_test.php
│ │ │ │ ├── insert_test.php
│ │ │ │ ├── join_test.php
│ │ │ │ ├── like_test.php
│ │ │ │ ├── limit_test.php
│ │ │ │ ├── order_test.php
│ │ │ │ ├── select_test.php
│ │ │ │ ├── truncate_test.php
│ │ │ │ ├── update_test.php
│ │ │ │ └── where_test.php
│ │ ├── helpers
│ │ │ ├── array_helper_test.php
│ │ │ ├── captcha_helper_test.php
│ │ │ ├── cookie_helper_test.php
│ │ │ ├── date_helper_test.php
│ │ │ ├── directory_helper_test.php
│ │ │ ├── download_helper_test.php
│ │ │ ├── email_helper_test.php
│ │ │ ├── file_helper_test.php
│ │ │ ├── form_helper_test.php
│ │ │ ├── html_helper_test.php
│ │ │ ├── inflector_helper_test.php
│ │ │ ├── language_helper_test.php
│ │ │ ├── number_helper_test.php
│ │ │ ├── path_helper_test.php
│ │ │ ├── security_helper_test.php
│ │ │ ├── string_helper_test.php
│ │ │ ├── text_helper_test.php
│ │ │ ├── url_helper_test.php
│ │ │ └── xml_helper_test.php
│ │ └── libraries
│ │ │ ├── Calendar_test.php
│ │ │ ├── Driver_test.php
│ │ │ ├── Encrypt_test.php
│ │ │ ├── Encryption_test.php
│ │ │ ├── Parser_test.php
│ │ │ ├── Session_test.php
│ │ │ ├── Table_test.php
│ │ │ ├── Typography_test.php
│ │ │ ├── Upload_test.php
│ │ │ └── Useragent_test.php
│ ├── mocks
│ │ ├── autoloader.php
│ │ ├── ci_testcase.php
│ │ ├── ci_testconfig.php
│ │ ├── core
│ │ │ ├── common.php
│ │ │ ├── input.php
│ │ │ ├── security.php
│ │ │ ├── uri.php
│ │ │ └── utf8.php
│ │ ├── database
│ │ │ ├── ci_test.sqlite
│ │ │ ├── config
│ │ │ │ ├── mysql.php
│ │ │ │ ├── mysqli.php
│ │ │ │ ├── pdo
│ │ │ │ │ ├── mysql.php
│ │ │ │ │ ├── pgsql.php
│ │ │ │ │ └── sqlite.php
│ │ │ │ ├── pgsql.php
│ │ │ │ └── sqlite.php
│ │ │ ├── db.php
│ │ │ ├── db
│ │ │ │ └── driver.php
│ │ │ ├── drivers
│ │ │ │ ├── mysql.php
│ │ │ │ ├── mysqli.php
│ │ │ │ ├── pdo.php
│ │ │ │ ├── postgre.php
│ │ │ │ └── sqlite.php
│ │ │ └── schema
│ │ │ │ └── skeleton.php
│ │ ├── libraries
│ │ │ ├── driver.php
│ │ │ ├── encrypt.php
│ │ │ ├── encryption.php
│ │ │ ├── session.php
│ │ │ └── table.php
│ │ └── uploads
│ │ │ └── ci_logo.gif
│ ├── phpunit.xml
│ └── travis
│ │ ├── mysql.phpunit.xml
│ │ ├── mysqli.phpunit.xml
│ │ ├── pdo
│ │ ├── mysql.phpunit.xml
│ │ ├── pgsql.phpunit.xml
│ │ └── sqlite.phpunit.xml
│ │ ├── pgsql.phpunit.xml
│ │ └── sqlite.phpunit.xml
│ └── user_guide
│ ├── DCO.html
│ ├── _downloads
│ └── ELDocs.tmbundle.zip
│ ├── _images
│ ├── appflowchart.gif
│ └── smile.gif
│ ├── _static
│ ├── ajax-loader.gif
│ ├── basic.css
│ ├── ci-icon.ico
│ ├── comment-bright.png
│ ├── comment-close.png
│ ├── comment.png
│ ├── css
│ │ ├── badge_only.css
│ │ └── theme.css
│ ├── doctools.js
│ ├── down-pressed.png
│ ├── down.png
│ ├── file.png
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ └── fontawesome-webfont.woff
│ ├── jquery.js
│ ├── js
│ │ └── theme.js
│ ├── minus.png
│ ├── plus.png
│ ├── pygments.css
│ ├── searchtools.js
│ ├── underscore.js
│ ├── up-pressed.png
│ ├── up.png
│ └── websupport.js
│ ├── changelog.html
│ ├── contributing
│ └── index.html
│ ├── database
│ ├── caching.html
│ ├── call_function.html
│ ├── configuration.html
│ ├── connecting.html
│ ├── db_driver_reference.html
│ ├── examples.html
│ ├── forge.html
│ ├── helpers.html
│ ├── index.html
│ ├── metadata.html
│ ├── queries.html
│ ├── query_builder.html
│ ├── results.html
│ ├── transactions.html
│ └── utilities.html
│ ├── documentation
│ └── index.html
│ ├── general
│ ├── alternative_php.html
│ ├── ancillary_classes.html
│ ├── autoloader.html
│ ├── caching.html
│ ├── cli.html
│ ├── common_functions.html
│ ├── compatibility_functions.html
│ ├── controllers.html
│ ├── core_classes.html
│ ├── creating_drivers.html
│ ├── creating_libraries.html
│ ├── credits.html
│ ├── drivers.html
│ ├── environments.html
│ ├── errors.html
│ ├── helpers.html
│ ├── hooks.html
│ ├── index.html
│ ├── libraries.html
│ ├── managing_apps.html
│ ├── models.html
│ ├── profiling.html
│ ├── requirements.html
│ ├── reserved_names.html
│ ├── routing.html
│ ├── security.html
│ ├── styleguide.html
│ ├── urls.html
│ ├── views.html
│ └── welcome.html
│ ├── genindex.html
│ ├── helpers
│ ├── array_helper.html
│ ├── captcha_helper.html
│ ├── cookie_helper.html
│ ├── date_helper.html
│ ├── directory_helper.html
│ ├── download_helper.html
│ ├── email_helper.html
│ ├── file_helper.html
│ ├── form_helper.html
│ ├── html_helper.html
│ ├── index.html
│ ├── inflector_helper.html
│ ├── language_helper.html
│ ├── number_helper.html
│ ├── path_helper.html
│ ├── security_helper.html
│ ├── smiley_helper.html
│ ├── string_helper.html
│ ├── text_helper.html
│ ├── typography_helper.html
│ ├── url_helper.html
│ └── xml_helper.html
│ ├── index.html
│ ├── installation
│ ├── downloads.html
│ ├── index.html
│ ├── troubleshooting.html
│ ├── upgrade_120.html
│ ├── upgrade_130.html
│ ├── upgrade_131.html
│ ├── upgrade_132.html
│ ├── upgrade_133.html
│ ├── upgrade_140.html
│ ├── upgrade_141.html
│ ├── upgrade_150.html
│ ├── upgrade_152.html
│ ├── upgrade_153.html
│ ├── upgrade_154.html
│ ├── upgrade_160.html
│ ├── upgrade_161.html
│ ├── upgrade_162.html
│ ├── upgrade_163.html
│ ├── upgrade_170.html
│ ├── upgrade_171.html
│ ├── upgrade_172.html
│ ├── upgrade_200.html
│ ├── upgrade_201.html
│ ├── upgrade_202.html
│ ├── upgrade_203.html
│ ├── upgrade_210.html
│ ├── upgrade_211.html
│ ├── upgrade_212.html
│ ├── upgrade_213.html
│ ├── upgrade_214.html
│ ├── upgrade_220.html
│ ├── upgrade_221.html
│ ├── upgrade_300.html
│ ├── upgrade_b11.html
│ └── upgrading.html
│ ├── libraries
│ ├── benchmark.html
│ ├── caching.html
│ ├── calendar.html
│ ├── cart.html
│ ├── config.html
│ ├── email.html
│ ├── encrypt.html
│ ├── encryption.html
│ ├── file_uploading.html
│ ├── form_validation.html
│ ├── ftp.html
│ ├── image_lib.html
│ ├── index.html
│ ├── input.html
│ ├── javascript.html
│ ├── language.html
│ ├── loader.html
│ ├── migration.html
│ ├── output.html
│ ├── pagination.html
│ ├── parser.html
│ ├── security.html
│ ├── sessions.html
│ ├── table.html
│ ├── trackback.html
│ ├── typography.html
│ ├── unit_testing.html
│ ├── uri.html
│ ├── user_agent.html
│ ├── xmlrpc.html
│ └── zip.html
│ ├── license.html
│ ├── objects.inv
│ ├── overview
│ ├── appflow.html
│ ├── at_a_glance.html
│ ├── features.html
│ ├── getting_started.html
│ ├── goals.html
│ ├── index.html
│ └── mvc.html
│ ├── search.html
│ ├── searchindex.js
│ └── tutorial
│ ├── conclusion.html
│ ├── create_news_items.html
│ ├── index.html
│ ├── news_section.html
│ └── static_pages.html
├── laravel
├── laravel-with-ajax
│ ├── .gitattributes
│ ├── .gitignore
│ ├── .htaccess
│ ├── CONTRIBUTING.md
│ ├── app
│ │ ├── commands
│ │ │ └── .gitkeep
│ │ ├── config
│ │ │ ├── app.php
│ │ │ ├── auth.php
│ │ │ ├── cache.php
│ │ │ ├── compile.php
│ │ │ ├── database.php
│ │ │ ├── local
│ │ │ │ ├── app.php
│ │ │ │ └── database.php
│ │ │ ├── mail.php
│ │ │ ├── packages
│ │ │ │ └── .gitkeep
│ │ │ ├── queue.php
│ │ │ ├── remote.php
│ │ │ ├── services.php
│ │ │ ├── session.php
│ │ │ ├── testing
│ │ │ │ ├── cache.php
│ │ │ │ └── session.php
│ │ │ ├── view.php
│ │ │ └── workbench.php
│ │ ├── controllers
│ │ │ ├── .gitkeep
│ │ │ ├── BaseController.php
│ │ │ ├── HomeController.php
│ │ │ └── tasksController.php
│ │ ├── database
│ │ │ ├── .gitignore
│ │ │ ├── migrations
│ │ │ │ └── .gitkeep
│ │ │ └── seeds
│ │ │ │ ├── .gitkeep
│ │ │ │ └── DatabaseSeeder.php
│ │ ├── filters.php
│ │ ├── lang
│ │ │ └── en
│ │ │ │ ├── pagination.php
│ │ │ │ ├── reminders.php
│ │ │ │ └── validation.php
│ │ ├── models
│ │ │ ├── Tasks.php
│ │ │ └── User.php
│ │ ├── routes.php
│ │ ├── start
│ │ │ ├── artisan.php
│ │ │ ├── global.php
│ │ │ └── local.php
│ │ ├── storage
│ │ │ ├── .gitignore
│ │ │ ├── cache
│ │ │ │ └── .gitignore
│ │ │ ├── logs
│ │ │ │ └── .gitignore
│ │ │ ├── meta
│ │ │ │ └── .gitignore
│ │ │ ├── sessions
│ │ │ │ └── .gitignore
│ │ │ └── views
│ │ │ │ └── .gitignore
│ │ ├── tests
│ │ │ ├── ExampleTest.php
│ │ │ └── TestCase.php
│ │ └── views
│ │ │ ├── data.blade.php
│ │ │ ├── edit.blade.php
│ │ │ ├── index.blade.php
│ │ │ ├── layout.blade.php
│ │ │ └── new.blade.php
│ ├── artisan
│ ├── bootstrap
│ │ ├── autoload.php
│ │ ├── paths.php
│ │ └── start.php
│ ├── composer.json
│ ├── css
│ │ ├── bootstrap.min.css
│ │ ├── font-awesome.css
│ │ └── style.css
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ └── fontawesome-webfont.woff
│ ├── index.php
│ ├── js
│ │ ├── code.js
│ │ └── jquery-1.7.2.min.js
│ ├── phpunit.xml
│ └── server.php
└── laravel
│ ├── .gitattributes
│ ├── .gitignore
│ ├── .htaccess
│ ├── CONTRIBUTING.md
│ ├── app
│ ├── commands
│ │ └── .gitkeep
│ ├── config
│ │ ├── app.php
│ │ ├── auth.php
│ │ ├── cache.php
│ │ ├── compile.php
│ │ ├── database.php
│ │ ├── local
│ │ │ ├── app.php
│ │ │ └── database.php
│ │ ├── mail.php
│ │ ├── packages
│ │ │ └── .gitkeep
│ │ ├── queue.php
│ │ ├── remote.php
│ │ ├── services.php
│ │ ├── session.php
│ │ ├── testing
│ │ │ ├── cache.php
│ │ │ └── session.php
│ │ ├── view.php
│ │ └── workbench.php
│ ├── controllers
│ │ ├── .gitkeep
│ │ ├── BaseController.php
│ │ ├── HomeController.php
│ │ └── tasksController.php
│ ├── database
│ │ ├── .gitignore
│ │ ├── migrations
│ │ │ └── .gitkeep
│ │ └── seeds
│ │ │ ├── .gitkeep
│ │ │ └── DatabaseSeeder.php
│ ├── filters.php
│ ├── lang
│ │ └── en
│ │ │ ├── pagination.php
│ │ │ ├── reminders.php
│ │ │ └── validation.php
│ ├── models
│ │ ├── Tasks.php
│ │ └── User.php
│ ├── routes.php
│ ├── start
│ │ ├── artisan.php
│ │ ├── global.php
│ │ └── local.php
│ ├── storage
│ │ ├── .gitignore
│ │ ├── cache
│ │ │ └── .gitignore
│ │ ├── logs
│ │ │ └── .gitignore
│ │ ├── meta
│ │ │ └── .gitignore
│ │ ├── sessions
│ │ │ └── .gitignore
│ │ └── views
│ │ │ └── .gitignore
│ ├── tests
│ │ ├── ExampleTest.php
│ │ └── TestCase.php
│ └── views
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ ├── layout.blade.php
│ │ └── new.blade.php
│ ├── artisan
│ ├── bootstrap
│ ├── autoload.php
│ ├── paths.php
│ └── start.php
│ ├── composer.json
│ ├── css
│ ├── bootstrap.min.css
│ ├── font-awesome.css
│ └── style.css
│ ├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
│ ├── index.php
│ ├── js
│ ├── code.js
│ └── jquery-1.7.2.min.js
│ ├── phpunit.xml
│ └── server.php
├── php-with-ajax
├── code.php
├── css
│ ├── bootstrap.min.css
│ ├── font-awesome.css
│ └── style.css
├── delete.php
├── edit.php
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── footer.php
├── header.php
├── index.php
├── index.php~
├── js
│ ├── code.js
│ └── jquery-1.7.2.min.js
└── new.php
├── php
├── code.php
├── css
│ ├── bootstrap.min.css
│ ├── font-awesome.css
│ └── style.css
├── delete.php
├── edit.php
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── footer.php
├── header.php
├── index.php
├── js
│ ├── code.js
│ └── jquery-1.7.2.min.js
└── new.php
├── template
├── css
│ ├── bootstrap.min.css
│ ├── font-awesome.css
│ └── style.css
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── index.php
├── js
│ ├── code.js
│ └── jquery-1.7.2.min.js
└── new.php
└── todolist.sql
/README.md:
--------------------------------------------------------------------------------
1 | #Simple To Do List
2 |
3 | - PHP ,
4 | - PHP with Ajax ,
5 | - Laravel ,
6 | - Laravel with Ajax ,
7 | - CodeIgniter ,
8 | - CodeIgniter with Ajax
9 |
10 |
11 | ##### Facebook Account = fb.com/ahmedash95
12 | ##### Twitter Account = twitter.com/ahmedash95
13 | ##### Ask Account = ask.fm/ahmedash95
14 |
15 | it's my pleasure to contact with me and give me your feedback about this simple project
16 |
--------------------------------------------------------------------------------
/codeigniter/codeIgniter-with-ajax/.htaccess:
--------------------------------------------------------------------------------
1 | RewriteEngine On
2 | RewriteCond %{REQUEST_FILENAME} !-f
3 | RewriteCond %{REQUEST_FILENAME} !-d
4 | RewriteRule ^(.*)$ index.php/$1 [L]
--------------------------------------------------------------------------------
/codeigniter/codeIgniter-with-ajax/DCO.txt:
--------------------------------------------------------------------------------
1 | Developer's Certificate of Origin 1.1
2 |
3 | By making a contribution to this project, I certify that:
4 |
5 | (1) The contribution was created in whole or in part by me and I
6 | have the right to submit it under the open source license
7 | indicated in the file; or
8 |
9 | (2) The contribution is based upon previous work that, to the best
10 | of my knowledge, is covered under an appropriate open source
11 | license and I have the right under that license to submit that
12 | work with modifications, whether created in whole or in part
13 | by me, under the same open source license (unless I am
14 | permitted to submit under a different license), as indicated
15 | in the file; or
16 |
17 | (3) The contribution was provided directly to me by some other
18 | person who certified (1), (2) or (3) and I have not modified
19 | it.
20 |
21 | (4) I understand and agree that this project and the contribution
22 | are public and that a record of the contribution (including all
23 | personal information I submit with it, including my sign-off) is
24 | maintained indefinitely and may be redistributed consistent with
25 | this project or the open source license(s) involved.
26 |
--------------------------------------------------------------------------------
/codeigniter/codeIgniter-with-ajax/application/.htaccess:
--------------------------------------------------------------------------------
1 |
Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter/codeIgniter-with-ajax/application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 |