Jump to content

Recommended Posts

Posted

Hello

 

i have been using Notepad and Dreamweaver for writing my php codes for some while now and i wish to make use of an IDE i came across Aptana, Eclipse , PhpStorm and others but i don't know which one to choose . So can everyone advise on any php IDE to make coding Easy,fast and simple with nice features .

 

Thanks.

Posted

We use Eclipse at work. It is good to work with and can be "set" for specific languages with plugins.

 

For instance we use Java which is the default language for it and added Adobe Flex to it as that is primarily what we use. You just need to install the tools for it to be a PHP editor.

 

Of course there are some PHP IDEs out there, but many cost money.

 

There are some listed under my list from 2008

Posted

We use NetBeans at work. I've tried pretty much all of them out there and IMO Netbeans is the best. Especially if you can take the time to setup XDebug fully. Awesome De-bugging makes my life so much easier.

Posted

We use Eclipse at work. It is good to work with and can be "set" for specific languages with plugins.

 

For instance we use Java which is the default language for it and added Adobe Flex to it as that is primarily what we use. You just need to install the tools for it to be a PHP editor.

 

Of course there are some PHP IDEs out there, but many cost money.

 

There are some listed under my list from 2008

 

Shocking! No condescending, undertone with a dry apology. Just straight talk, am I in the right forum?

Posted

I have been using notepad++ for a few months now and its brilliant. Very light weight and fast. It has its own FTP client and file explorer. Syntax colouring and loads more plugins. Its ideal for making quick changes as well. Also try the Zen Coding plugin. This provides an HTML template code for quick HTML implimentation.

 

For example...

 

html>(head>title)>body>div#wrapper>div#header+div#left+div#content+div#footer

 

produces...

 

<html>
<head>
	<title></title>
</head>
<body>
	<div id="wrapper">
		<div id="header"></div>
		<div id="left"></div>
		<div id="content"></div>
		<div id="footer"></div>
	</div>
</body>
</html>

 

And

 

ul>li#list$*5

 

produces...

 

<ul>
<li id="list1"></li>
<li id="list2"></li>
<li id="list3"></li>
<li id="list4"></li>
<li id="list5"></li>
</ul>

 

Mint!

  • 6 years later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...