A really good PHP editor...

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

User avatar
phice
Moderator
Posts: 1416
Joined: Sat Apr 20, 2002 3:14 pm
Location: Dallas, TX
Contact:

A really good PHP editor...

Post by phice »

This is a really great PHP editor. After you remove some of the toolbars at the top, it's really functionable. It even has a "Preview/Source" tabs, where you can preview your php code, and view the html soure it outputs... Go try it! :D

http://www.dzsoft.com/dzphp.htm
Image Image
conthox
Forum Commoner
Posts: 39
Joined: Tue Jun 25, 2002 1:44 pm
Location: Sweden

thanx

Post by conthox »

I'll try that one.
User avatar
nielsene
DevNet Resident
Posts: 1834
Joined: Fri Aug 16, 2002 8:57 am
Location: Watertown, MA

Post by nielsene »

I've tried lots of editors, but I've always stuck with good ole emacs (or vi, depending on my mood). Its been weird for me, if I'm doing Java I like a fancy IDE. but for any other language include C++, I prefer the emacs/vi's on windows or linux.
User avatar
Johnm
Forum Contributor
Posts: 344
Joined: Mon May 13, 2002 12:05 pm
Location: Michigan, USA
Contact:

Post by Johnm »

I keep going back to vi too. Although I have been trying to get used to the 6.1 vim -g for a while now.

Direwolf
JPlush76
Forum Regular
Posts: 819
Joined: Thu Aug 01, 2002 5:42 pm
Location: Los Angeles, CA
Contact:

Post by JPlush76 »

I use homesite, I heart it
dusty
Forum Contributor
Posts: 122
Joined: Sun Apr 28, 2002 9:52 pm
Location: Portsmouth, VA

Post by dusty »

just tried it, but i still think context is better than the actual editor part of dzsofts. although the preview option is nice.
User avatar
Takuma
Forum Regular
Posts: 931
Joined: Sun Aug 04, 2002 10:24 am
Location: UK
Contact:

Post by Takuma »

MMmm quite good but I like DWMX more!
MattF
Forum Contributor
Posts: 225
Joined: Sun May 19, 2002 9:58 am
Location: Sussex, UK

Post by MattF »

Does anyone find that with large scripts in context if you scroll in a weird way all the syntax highlighting goes weird and if you type it appears 5 letters after the cursor? To fix it you have to restart the editor, it's very annoying.
User avatar
Takuma
Forum Regular
Posts: 931
Joined: Sun Aug 04, 2002 10:24 am
Location: UK
Contact:

Post by Takuma »

Which editor are we talking about?
dusty
Forum Contributor
Posts: 122
Joined: Sun Apr 28, 2002 9:52 pm
Location: Portsmouth, VA

Post by dusty »

what version of context are you using? i have heard that there are problems with the newer versions so i just stick with v0.96.3 which is the one everyone liked.
codewarrior
Forum Commoner
Posts: 81
Joined: Wed Aug 07, 2002 1:28 pm

Post by codewarrior »

Use DW MX baby! :lol:
User avatar
phice
Moderator
Posts: 1416
Joined: Sat Apr 20, 2002 3:14 pm
Location: Dallas, TX
Contact:

Post by phice »

Notepad > *
Image Image
codewarrior
Forum Commoner
Posts: 81
Joined: Wed Aug 07, 2002 1:28 pm

Post by codewarrior »

phice wrote:Notepad > *
8O :P
User avatar
hob_goblin
Forum Regular
Posts: 978
Joined: Sun Apr 28, 2002 9:53 pm
Contact:

Post by hob_goblin »

phice wrote:Notepad > *

Code: Select all

while($conditions == "certain things like replacing"){
 if($wordpad > $notepad){
 return TRUE;
 }
}
User avatar
phice
Moderator
Posts: 1416
Joined: Sat Apr 20, 2002 3:14 pm
Location: Dallas, TX
Contact:

Post by phice »

hob_goblin wrote:
phice wrote:Notepad > *

Code: Select all

while($conditions == "certain things like replacing"){
 if($wordpad > $notepad){
 return TRUE;
 }
}

Code: Select all

while($conditions == "certain things like replacing"){ 
if($wordpad > $notepad){ 
return TRUE; 
} elseif (($fileExt == ".php") || ($fileExt == ".php3") || ($fileExt == ".phps") || ($fileExt == ".html") || ($fileExt == ".htm")) {
header("Location: C:\windows\notepad.exe");
}
Image Image
Locked