asdf
asdf

Reputation: 43

How to include codeigniter framework in eclipse

How can I include CodeIgnitor framework when creating a new project in eclipse IDE? Thanks

Upvotes: 4

Views: 1786

Answers (1)

Shivaas
Shivaas

Reputation: 694

Create a new PHP project in Eclipse. Copy the CodeIgniter files in the root of your project directory.

Eg: if your project is called "CI_Test", your directory structure should look like this (assuming you are using CodeIgniter 2.0.2):

CI_Test/application
CI_Test/system
CI_Test/index.php
CI_Test/license.txt

Upvotes: 6

Related Questions