PHP editor

This is a discussion on PHP editor within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Hi, I am new in PHP, and wondering if someone can suggest a good php editor (free is better but ...


Go Back   Usenet Forums > PHP Programming Forums > alt.comp.lang.php

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 11-22-2005
Rob
 
Posts: n/a
Default PHP editor

Hi,
I am new in PHP, and wondering if someone can suggest a good php editor
(free is better but I can pay up to $100) and also a good resource to study.
I have background in C++ and Java programming.
Thanks-Rob


Reply With Quote
  #2 (permalink)  
Old 11-22-2005
Marcel
 
Posts: n/a
Default Re: PHP editor


"Rob" <Rob@hotmail.com> schreef in bericht
news:43832620$1@news.sentex.net...
> Hi,
> I am new in PHP, and wondering if someone can suggest a good php editor
> (free is better but I can pay up to $100) and also a good resource to
> study.
> I have background in C++ and Java programming.
> Thanks-Rob
>


I like EditPlus www.editplus.com en Notepad++ (free) at
http://notepad-plus.sourceforge.net


Reply With Quote
  #3 (permalink)  
Old 11-22-2005
Connector5
 
Posts: n/a
Default Re: PHP editor

Eclipse and PHPEclipse:

http://eclipse.org
http://phpeclipse.de

Eclipse is a universal IDE coded in Java that is completely moddable.
PHPEclipse is a very powerful plugin for Eclipse that adds PHP support.
It's gonna take you about an hour or two to get all the components
downloaded and installed, but you will be very, very glad you did.

P.S.: Free and open-source.



"Rob" <Rob@hotmail.com> wrote in message news:43832620$1@news.sentex.net...
> Hi,
> I am new in PHP, and wondering if someone can suggest a good php editor
> (free is better but I can pay up to $100) and also a good resource to

study.
> I have background in C++ and Java programming.
> Thanks-Rob
>
>



Reply With Quote
  #4 (permalink)  
Old 11-22-2005
BearItAll
 
Posts: n/a
Default Re: PHP editor

On Tue, 22 Nov 2005 09:07:19 -0500, Rob wrote:

> Hi,
> I am new in PHP, and wondering if someone can suggest a good php editor
> (free is better but I can pay up to $100) and also a good resource to study.
> I have background in C++ and Java programming.
> Thanks-Rob


There are a lot of good tutorial sites. But the source of information I
keep coming back to is

http://www.php.net

You could go straight to a tutorial at,

http://www.php.net/tut.php

What you will find in time is that almost any search you do for php in
google will bring you back to this site.

Once you have got going with php then you will also find a lot of libs and
code examples on sourceforge.

Reply With Quote
  #5 (permalink)  
Old 11-22-2005
Dave
 
Posts: n/a
Default Re: PHP editor

Rob wrote:
> Hi,
> I am new in PHP, and wondering if someone can suggest a good php editor
> (free is better but I can pay up to $100) and also a good resource to study.
> I have background in C++ and Java programming.
> Thanks-Rob
>
>

I don't know if you are a UNIX person, but I see someone has written a
PHP plugin for vim (the vi clone) which does colouring, autoformatting
etc. I'm sure a google will find it if that suits you. I know vi is not
everyones' favorite editor, but I write 99% of my stuff using vi.

--
Dave K

http://www.southminster-branch-line.org.uk/

Please note my email address changes periodically to avoid spam.
It is always of the form: month-year@domain. Hitting reply will work
for a couple of months only. Later set it manually. The month is
always written in 3 letters (e.g. Jan, not January etc)

Reply With Quote
  #6 (permalink)  
Old 11-22-2005
Floyd
 
Posts: n/a
Default Re: PHP editor

I would also consider PHP Designer 2005 on
http://www.mpsoftware.dk/phpdesigner.php


"Rob" <Rob@hotmail.com> schreef in bericht
news:43832620$1@news.sentex.net...
> Hi,
> I am new in PHP, and wondering if someone can suggest a good php editor
> (free is better but I can pay up to $100) and also a good resource to
> study.
> I have background in C++ and Java programming.
> Thanks-Rob
>
>



Reply With Quote
  #7 (permalink)  
Old 11-23-2005
jussij@zeusedit.com
 
Posts: n/a
Default Re: PHP editor

> I am new in PHP, and wondering if someone can suggest a good
> php editor (free is better but I can pay up to $100)


The Zeus for Windows IDE has class browsing, syntax highlighting,
code folding and intellisensing for the PHP language:

http://www.zeusedit.com/php.html

The intellisensing in is driven by the information produced by ctags
and some extra configuration is required. This link shows how to
configured the intellisensing:

http://www.zeusedit.com/forum/viewtopic.php?t=185

> and also a good resource to study.


You might want to get hold of the PHP SDK API reference which is
in HtmlHelp format. This link describes where to get this file and
how to integrate it into the Zeus Quick Help feature:

http://www.zeusedit.com/forum/viewtopic.php?t=9

Jussi Jumppanen
Author: Zeus for Windows
NOTE: Zeus is shareware (45 day trial).

Reply With Quote
  #8 (permalink)  
Old 11-23-2005
Shawn Wilson
 
Posts: n/a
Default Re: PHP editor

"Rob" <Rob@hotmail.com> wrote in message news:43832620$1@news.sentex.net...
> I am new in PHP, and wondering if someone can suggest a good php editor
> (free is better but I can pay up to $100) and also a good resource to
> study.
> I have background in C++ and Java programming.
> Thanks-Rob


I'm a big fan of Homesite... although it's not technically a PHP editor, it
does color the code just fine and that's the main thing for me. I've been
using Homesite for years now for HTML only sites as well as my PHP/mySQL
sites.

Here is a screenshot: http://www.dvigroup.net/etc/share/pic/workshot.jpg

You can get it here: http://www.macromedia.com/software/homesite/

It's $99 and is small and fast.

It has a deployment wizard and system, but I'm not a big fan of that part.
Dragging into your FTP program is several seconds faster if you are like me
and constantly change little things and upload. Other than that, I don't
have any complaints.

As for study, PHP.net is your friend... its all there. The gold there
though, is really the user comments. 99% of my questions are answered by
the user comments, not the function definitions.

--
Shawn Wilson


Reply With Quote
  #9 (permalink)  
Old 11-25-2005
C.
 
Posts: n/a
Default Re: PHP editor

www.php-editors.com might be helpful although it hasn't been updated
for some time.

I use vim - syntax colouring, auto indenting and a proper code editor -
not a texteditor. There's also ctags stuff for php and vim although
I've never managed to find the time to work out how to use it.

HTH

C.

Reply With Quote
  #10 (permalink)  
Old 12-17-2005
lionel bellec
 
Posts: n/a
Default Re: PHP editor

Hi,

Phped is a good one and free

http://www.allhtml.com/telechargement/logiciel40.php


"Rob" <Rob@hotmail.com> a écrit dans le message de news:
43832620$1@news.sentex.net...
> Hi,
> I am new in PHP, and wondering if someone can suggest a good php editor
> (free is better but I can pay up to $100) and also a good resource to
> study.
> I have background in C++ and Java programming.
> Thanks-Rob
>
>



Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 09:08 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0