vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   General Articles (https://vborg.vbsupport.ru/forumdisplay.php?f=189)
-   -   PHP Editors (https://vborg.vbsupport.ru/showthread.php?t=32618)

|DarkManX| 11-22-2001 10:00 PM

i use homesite 4.5

it works really good for me....

wondering if there is anything better out there that you more professional guys use?? :)

Lesane 11-23-2001 12:25 PM

I also use Homesite 4.5. One of the best in my eyez

Admin 11-23-2001 12:30 PM

I have EditPlus installed here, but I usually use CuteHTML (yes, HTML).

I only use it because I'm used to the way the cursor moves there (trust me, it's very different in other programs).
I'm also very used to its Search and Search & Replace functions, I can do them with my eyes closed.
If offers no tag highlighting for PHP, or any sophisticated stuff of any kind.

Once in a while I start up EditPlus and try coding with it, but it's just not the same, despite all the neat features it has.

Mike Gaidin 11-23-2001 12:32 PM

Homesite 4.5 as well.

christec 11-23-2001 02:11 PM

Lately I have been using Glimmer.

http://glimmer.sourceforge.net/

Scott MacVicar 11-23-2001 02:23 PM

I like PHPed

http://www.soysal.com


Scott

JamesUS 11-23-2001 03:23 PM

All I ever use is EditPlus :)

wot-Mike 11-23-2001 08:44 PM

I'm a dedicated EditPad Lite user. Have been for years. It's free and has all the features you can ask for.
But I'm thinking of buying the Pro version, just for the syntax coloring thingy :)

snyx 11-24-2001 12:04 AM

Im the only one on TextPad? It loads up files like hella quick, but whats so great about Homesite? And is there anything that allows you to find/replace multiple lines of code?

SWFans.net 11-24-2001 12:47 AM

errrm, I really don?t know PHP, but I just use plain old Notepad until I need to do ?find and replace?, then I use Wordpad.

I'm learning my around recognizing functions and conditions to some small extent though. :)

Palmer ofShinra 11-24-2001 09:27 AM

TextPad all the way.

I just LOVE the options... syntax highlighting to easy find and replace, MDI, spell checker...

"Match Brackets" is a LIFESAVER.

snyx 11-27-2001 02:29 AM

[QUOTE]Originally posted by Palmer ofShinra
"Match Brackets" is a LIFESAVER.

Dark Blaze 11-27-2001 04:28 AM

[QUOTE]Originally posted by SWFans.net
errrm, I really don?t know PHP, but I just use plain old Notepad until I need to do ?find and replace?, then I use Wordpad.

Dark Blaze 11-27-2001 04:33 AM

[QUOTE]Originally posted by Palmer ofShinra
TextPad all the way.

I just LOVE the options... syntax highlighting to easy find and replace, MDI, spell checker...

"Match Brackets" is a LIFESAVER.

Admin 11-27-2001 12:02 PM

I'm just guessing, but maybe it's something that checks } and { and makes sure you don't have too many or too less?

Dark Blaze 11-27-2001 06:50 PM

Yeah, probably that's the description of that feature would be if it actually exists...

Palmer ofShinra 11-28-2001 09:08 AM

Put the cursor next to any bracket [ ( {

Hit Ctrl+M

It will jump to the matching bracket...

It's a great way to see if you missed a } when you have a dozen nested IFs, WHILES and FORs.

The easy way is to put it at the last } in each section [if ($action)] and then hit Ctrl+M.

if it doesn't go to the beginning, something's screwed. Then you can use it to narrow down where it's missing pretty quickly.

I can find a missing bracket and fix it in a couple minutes now, rather than the unreliable looking over it manually for half an hour, missing it a dozen times, commenting every bracket pair so you can match them up...

Only to discover you have a line like this

if ($condition) { dosomething;

With no closing }... cuz it's just one statement after an IF, right?

It also helps with nested ( ) for IF statements as well...

Dark Blaze 11-28-2001 09:28 AM

Thank you for that info Palmer ofShinra :)

Admin 11-28-2001 10:01 AM

It helps to do things like this:
PHP Code:

if ($foo=="bar") {
  for (
$i=10$i>0$i--) {
    echo 
"Who's your daddy?!?!";
  } 
// for ($i=10; $i>0; $i--)
// if ($foo=="bar") 

and even easier:
PHP Code:

if ($foo=="bar")
{
  for (
$i=10$i>0$i--)
  {
    echo 
"Who's your daddy?!?!";
  }
  
// for ($i=10; $i>0; $i--)
}
// if ($foo=="bar") 

like the standard is on C/++.

Personally I use the first method, then when releasing the code I just remove the comments to make it cleaner (the comments just help when testing the script, that's all).

Dark Blaze 11-28-2001 10:18 AM

Btw FireFly, I was checking out Online Users Section, and I noticed that next to your name it said "No peeking Dark Blaze ;-)" or something similar... Could you tell me which script is that and where I can download it please?

Thank you,

Admin 11-28-2001 10:22 AM

<a href="https://vborg.vbsupport.ru/showthread.php?s=&threadid=31938" target="_blank">https://vborg.vbsupport.ru/showt...threadid=31938</a>

Palmer ofShinra 11-29-2001 10:11 AM

I indent as well... but it's easy to just miss a single bracket now and then, especially in goofy places.

I'm needing it less as I go, but it's still nice to have.

toLTcaboLT 11-29-2001 12:42 PM

I use UltraEDIT.

Dark Blaze 11-30-2001 10:53 AM

[QUOTE]Originally posted by FireFly
https://vborg.vbsupport.ru/showthrea...threadid=31938

Zach 12-05-2001 11:20 PM

I use em all, as I sit here right now I have active files in dreamweaver, homesite, namo, notepad, wordpad, and one even in phped

Dont ask me why, just always use different programs for different types of functions (well except never use frontpage) - I really like homesites ability to run through and make a change on all my files at once - use that all the time, namo has by far the best wysiwyg for my purposes. Dreamweaver gets opened by habit, and the text stuff I use for quick edits, well edits that I do not do straight off of opening the document from the server with cutehtml - that actually probably gets used the most, open, make my change hit save and check it out and see if my change actually worked.

nuno 12-24-2001 12:54 AM

CuteHTML

fury 01-10-2002 02:34 AM

TextPad all the way here, too... Ctrl+M is your friend :cool:

StarBuG 01-10-2002 07:02 AM

I use and will always use UltraEdit!!

The best Editor ever! hehe

Greetings

StarBuG

DroppedAtBirth 01-10-2002 07:03 PM

I have always used PHPed but also use editpad light.

Shenlong 01-16-2002 08:36 PM

I use Homesite 5 and PHPEd 4 beta

XiXora 01-17-2002 09:44 AM

Macromedia's Homesite 5 and CuteFTP Pro v2 HTML editor when i quickly have to change something remotely. :)

Shenlong 01-18-2002 08:48 PM

Now I just use UltraEdit (if anyone cares lol)

MrLister 01-18-2002 11:20 PM

PHP Coder is the best. Just the right colors for each function although the project has been abandoned for a while now.

Stretchr 01-19-2002 08:57 AM

PHPCoder also. Only problem I've had is that very long strings won't highlight for replace and sometimes if you close a file then try to re-open it you get a blank page and must restart the program. Nice price, though. ;)

thesteveco 01-30-2002 02:14 AM

console: /bin/vi
desktop: /usr/X11R6/bin/nedit

Ninth Dimension 02-03-2002 10:24 PM

I'm sure that some other people here have already said this, but I use Edit Plus, it's not fantastic, but it's fine for what I want it to do.

Palmer ofShinra 02-20-2002 03:45 PM

A friend of mine swears by MetaPad

I'm still a hardcore TextPad dude myself

TECK 02-27-2002 12:35 AM

UltraEdit. for all.
http://www.ultraedit.com

[QUOTE]Originally posted by FireFly
I'm just guessing, but maybe it's something that checks } and { and makes sure you don't have too many or too less?

Wayne Luke 03-05-2002 08:54 PM

I use Textpad for programming. Though I am going to check out Komodo once I get my new machine running. It is an IDE for PHP, PERL, Python, TCL and other languages. It just won't run on the pathetic machine I am stuck using now.

Wayne Luke 03-05-2002 08:56 PM

[QUOTE]Originally posted by nakkid
UltraEdit. for all.
http://www.ultraedit.com


All times are GMT. The time now is 07:32 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01484 seconds
  • Memory Usage 1,789KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete