|
|||||
|
|
#1 |
|
|
I want to do some Web development using HTML, Javascript, PHP and MySQL. Does anybody recommend any good editors to use in this Web development. Something that works well and makes development faster and easier but doesn't take away the power of writing code? Nick |
|
|
#2 |
|
|
if you are working on linux try Kdevelop or Quanta. if on windows: try Zend Studio (zend.com) or macromedia homesite on mac you can use quanta as well (I think) or use mac's build-in solutions regards andrew > Hi, > > I want to do some Web development using HTML, Javascript, PHP and MySQL. > Does anybody recommend any good editors to use in this Web development. > Something that works well and makes development faster and easier but > doesn't take away the power of writing code? > > Nick |
|
|
#3 |
|
|
news:40d2c599@news.home.net.pl: > if on windows: try Zend Studio (zend.com) or macromedia homesite Or the *excellent* PHPEdit, available from http://www.phpedit.net. It's free for personal or academic use. Regards, Wald |
|
|
#4 |
|
|
wald wrote:
> Or the *excellent* PHPEdit, available from http://www.phpedit.net. > It's free for personal or academic use. Don't try it at all - it's a waste of time. I tried a lot of php editors, but phpEdit was definitely one of the worst. It's slow, it's buggy and it's to big. It may have all the features you want, but there are a lot more, you don't want. It's impossible to work with that thing. If money doesn't matter try nusphere phpEd, it's definitely the best, but if you don't have 500$, try ultraEdit. It costs 35$, is even faster than notepad and has everything you need. greetings Christian |
|
|
#5 |
|
|
Christian Fersch wrote:
> try ultraEdit. It costs 35$, is even faster > than notepad and has everything you need. I second that. * Column mode (edit multiple lines) - one of the things that I use constantly. Great for indenting a large block of code when you forget that it should have been in some kind of conditional or loop statement. * Macros - have tasks that you perform constantly? Create a macro so you only have to press one key. I've got a block of code that I use a lot for different projects dealing with the loading of configuration vars. I just run my macro, and change a single filename, and my config loading code is implemented with only a few keystrokes. * Custom syntax highlight files - This has been one of the biggest timesavers for me. I created a PHP language file with all only the functions that were supported on the production server and the methods in my CMS. If the function doesn't turn blue in my editor, I can't use it for my project - very handy. * Multiple languages - I use UE for php, html, css, javascript, perl and c. * Open file Tabs - great for having multiple files open at once. * Find/Replace in files - search and/or replace things in files - either open or in a directory. Supports regex (unix like or a special UE markup) I work at an advertising agency where there are all Macs. The only reason I am on Windows still is because of UE. I haven't found a Mac editor that has all the features and flexibility that I use from UE. -- Justin Koivisto - spam@koivi.com PHP POSTERS: Please use comp.lang.php for PHP related questions, alt.php* groups are not recommended. |
|
|
#6 |
|
|
Try kate if you are on linux.
|
|
|
#7 |
|
|
Christian Fersch wrote:
> > wald wrote: > > Or the *excellent* PHPEdit, available from http://www.phpedit.net. > > It's free for personal or academic use. > > Don't try it at all - it's a waste of time. I tried a lot of php > editors, but phpEdit was definitely one of the worst. > > ... snip ... > > If money doesn't matter try nusphere phpEd, it's definitely the > best, but if you don't have 500$, try ultraEdit. It costs 35$, > is even faster than notepad and has everything you need. For a programmer's editor for Windows take a look at Zeus: http://www.zeusedit.com/lookmain.html Just some of the programming features include: + Code completion and intellisensing + Integrated cl*** browser + Project/workspace management + Fully configurable syntax highlighting + Seamless FTP editing + Integrated version control using the Microsoft Source Code Control (SCC) interface, including CVS integration. + Quick Help context sensitive help engine Jussi Jumppanen http://www.zeusedit.com |
|
|
#8 |
|
|
Justin Koivisto <spam@koivi.com> wrote:
> Christian Fersch wrote: >> try ultraEdit. It costs 35$, is even faster >> than notepad and has everything you need. > > I second that. <snip features> Looks nice indeed. Now, before I pay that license fee, what has UltraEdit that PsPad hasn't got? (http://www.pspad.com) Thanks for the feedback, Wald |
|
|
#9 |
|
|
Brandon Blackmoor wrote:
> I and several of the Java programmers I work with swear by TextPad. It's > not cheap, but it's cheap, and it's well worth it. > > bblackmoor > 2004-06-20 Very simple and useful editor in my experience as well... I used it for editing most everything back in the days of using Windows. When I switched completely to Linux few years ago I started with and stuck with Kate, and now I use KDevelop with Kate since 3.0 came out. I still miss the file selector as it was implemented exactly in TextPad, but I've also got to give a lot of props to KDevelop's cl*** and function library browser as well - makes file browsing nearly obsolete. |