GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   PHP users: What do you use to enhance your coding? (https://gfy.com/showthread.php?t=330800)

Varius 07-24-2004 06:03 PM

PHP users: What do you use to enhance your coding?
 
If you're not using any of the above, you'll regret it one day :1orglaugh

If you're using anything else noteworthy, mention it here.

Lace 07-24-2004 06:05 PM

ive seen zend used alot:glugglug

Varius 07-24-2004 06:09 PM

Quote:

Originally posted by BMI Lace
ive seen zend used alot:glugglug
We use it and it's cool. We can't take advantage of their caching though (too much dynamic content), but the accelerator does speed things up a bit.

I really love using AdoDB and Smarty though. It enables me to make the following things a breeeeeze:

- multilingual support
- browser/resolution support
- 'skin'able sites
- changing design
- migrating to a new database type

Not to mention, that 0 of my pages contain even a tiny bit of HTML code in them. Most of my pages of code are now less than 100-200 lines :thumbsup

Lane 07-24-2004 06:17 PM

i use Zend Studio.. great editor

Varius 07-24-2004 06:34 PM

Quote:

Originally posted by Lane
i use Zend Studio.. great editor
I used to use Notepad but few years ago switched to just using Pico directly on the servers. Never was one for editors ;p

Lane 07-24-2004 06:52 PM

Quote:

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.

Varius 07-24-2004 07:16 PM

Quote:

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.

retrograde 07-24-2004 07:26 PM

I use Zend, and it's been great so far.

JDog 09-15-2004 11:35 AM

Quote:

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

Spudstr 09-15-2004 11:59 AM

damn.. i'm out of the loop.. but yet i created my own template system like smarty years ago and update it along the way..

gogo Ultraedit and VI!

Intrigue 09-15-2004 12:02 PM

I'm a big fan of smarty, and our homebrew class library :thumbsup

lb_vee 09-15-2004 12:51 PM

ssh to the box, checkout of cvs, edit w/vi and commit changes.

Basic_man 09-15-2004 12:52 PM

Smarty - Templating engine
and Dreamweaver sometimes !

Manowar 09-15-2004 12:57 PM

Quote:

Originally posted by Lace
ive seen zend used alot:glugglug
yeah, it looks good

Varius 09-15-2004 12:59 PM

Wow thought this thread was dead andburied a long time ago :1orglaugh

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 ??

mikeylove 09-15-2004 03:47 PM

I'm pretty sure that Smarty makes baby jeebus cry.

If I never have to see another Smarty template again, it'll be way too fucking soon.

lb_vee 09-15-2004 05:30 PM

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.

just a punk 09-15-2004 05:42 PM

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.

grannytgp 09-16-2004 11:19 PM

Quote:

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.

Here's a good resource for even more PHP editors: http://www.php-editors.com/review/

rickholio 09-17-2004 12:17 AM

Please add "Insane amounts of caffeine" to poll options. :thumbsup

PornGeneral 09-17-2004 12:36 AM

nano

{fusion} 09-17-2004 12:36 AM

smarty is great.

Paul Waters 09-17-2004 03:48 AM

jdit does me just fine. And it is open source!

:thumbsup

Benja 09-17-2004 03:58 AM

jedit / Bluefish / VI as editors.
Turck MM Cache for caching (http://turck-mmcache.sourceforge.net/index_old.html)
The PHP API is awesome.


All times are GMT -7. The time now is 05:23 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123