Originally posted by Varius I used to use Notepad but few years ago switched to just using Pico directly on the servers. Never was one for editors ;p
I can't live without syntax highlighting.. not to mention auto-indentation is very helpful.. auto complete also saves tons of time so you dont have keep looking up function syntax from the manual..
Zend Studio also checks for syntax errors on the fly.. we always make typos, and get some parse (or syntax) errors when we run something the first time..
plus it has debugging features which helps you trace your program in case you are getting some unexpected results..
i think the IDE is way more important than the tools you have mentioned.
Originally posted by Lane I can't live without syntax highlighting.. not to mention auto-indentation is very helpful.. auto complete also saves tons of time so you dont have keep looking up function syntax from the manual..
Zend Studio also checks for syntax errors on the fly.. we always make typos, and get some parse (or syntax) errors when we run something the first time..
plus it has debugging features which helps you trace your program in case you are getting some unexpected results..
i think the IDE is way more important than the tools you have mentioned.
Well for me, it is a pain to SCP the file to my gateway server, then to the proper server, then copy it in the right place.
With Pico, I change something, save it, refresh in browser. Repeat until the bugs / parse errors are out, then just copy it to real server (from demo server I work on).
MUCH quicker for me. Also, I can interact with data in demo database and AdoDB has a simple debug true/false that lets you see all queries and their errors or transaction status.
Originally posted by Lane I can't live without syntax highlighting.. not to mention auto-indentation is very helpful.. auto complete also saves tons of time so you dont have keep looking up function syntax from the manual..
Zend Studio also checks for syntax errors on the fly.. we always make typos, and get some parse (or syntax) errors when we run something the first time..
plus it has debugging features which helps you trace your program in case you are getting some unexpected results..
i think the IDE is way more important than the tools you have mentioned.
That's the great thing about zend studio, I like how it shows where a if,while,for, foreach type statements end & starts!
jDoG
NSCash now powering ReelProfits.com ALSO FEATURING: NSCash.com :: SoloDollars.com :: ReelProfits.com :: BiminiBucks.com :: VOD
PROGRAMS COMING SOON: Greedy Bucks :: Vengeance Cash
NOW OFFERING OVER 60 SITES
CONTACT :: JAMES SMITH :: CHIEF TECHNOLOGY OFFICER :: ICQ (711385133)
Wow thought this thread was dead andburied a long time ago
For those using Smarty, I recently came across a caching problem it seems to have.
if I have two dirs of templates, let's say:
/templates/en/index.tpl
/templates/sp/index.tpl
and my page loads the index.tpl based on user's language (en of sp), I keep getting the same one.
If i del the tmp files in /templates_c/ it works fine until it gets in there again.
I've solved this problem by losing my directories and using en_index.tpl and sp_index.tpl so they are nto the same template name, but does anyone know a solution to use my original sub-folder method ??
You can setup your own pseudo templating engine if you setup an MVC style system. Ive done it for a1-escort.com. Its all php with the templates seperated from the controllers/object models.
You still get php in your code but its pretty much limited to control structures and loops.
Using my own XPad Editor and happy with it. You may download it from here: http://www.fhgstore.com/wmtools.html - it's 100% free since I made it for myself
Just try it when let me know if you like it or not. My ICQ is in profile.
Originally posted by Lane i use Zend Studio.. great editor
My PHP scripts are still slightly above the "Hello World!" level... but I'm a junkie for good software, so I picked up a copy of Zend Studio last night after reading this post. And I must say... WOW!
I would suggest anybody that's into PHP scripting, or has a desire to learn should really check out this program. It's not cheap by any means, but I could definitely see it cutting development time by a major percentage.
Comment