I am new to php. I was reading a book and created a sample project using the zend framework. My app is in C:\apache\htdocs\mysite.com\
I want to add this to eclipse project explorer. I dont see an option to open existing project in eclipse. How can I do this?
Also after I have added the project do I need to add the library directory from zend framework somewhere in my project references so that eclipse knows to include this?
Would eclipse intellisense pick up the new library or do I need to add a plugin?
Thanks,
Kunal
Create new project from existing source
* screenshots are provided below
File > New > Project…
screenshot-1Select “PHP / PHP Project” > Next
[screenshot-2]Select “Create project at existing location (from existing source)” — add the directory of your project. i.e. select “Browse…” and browse to the folder where your project is (e.g. in your case the directory is “C:\apache\htdocs\mysite.com\”)
[screenshot-3]Select “Finish” your done.
Add Zend Framework for code completion
See these stackoverflow questions.
Also see this stackoverflow question on the difference between the build path and the include path.
Screenshots
screenshot-1screenshot-2screenshot-3