alyssaeliyah
alyssaeliyah

Reputation: 2244

Create New PHP Project in Eclipse

I want to create a new PHP Project in Eclipse but I found no PHP Project Option after clicking File > New >.

enter image description here

What should I do to create a new PHP Project in Eclipse Juno?

Upvotes: 0

Views: 2131

Answers (4)

Ken A Collins
Ken A Collins

Reputation: 291

At the time of this writing, June 2018, the URL to download the plugin is:

http://download.eclipse.org/tools/pdt/updates/5.3

This will become outdated over time so anyone reading this post in the future should just check...

https://www.eclipse.org/pdt/

...for the current version.

Upvotes: 1

zulus
zulus

Reputation: 2505

You probably are on Java Perspective, whre "new PHP project" item isn't contributed. Use File -> New -> Other (ctrl+n shortcut) and select php project from list.

Off course Eclipse PDT have to be installed.

Upvotes: 1

GAVD
GAVD

Reputation: 2134

Do you install PDT? See this: http://www.eclipse.org/pdt/

Upvotes: 1

Tim Biegeleisen
Tim Biegeleisen

Reputation: 520998

You need to install the PHP Development Tools package for Eclipse. From the link given:

In Eclipse, click Help -> Install New Software and work with *: http://download.eclipse.org/tools/pdt/updates/3.5

Once you have installed the plugin, you should be able to create a PHP project.

Upvotes: 1

Related Questions