I am an experienced web developer, although I am fairly new to PHP. It is pretty straightforward so far. It sure is fun (!) learning it's nuances.
89326269cd0c04ca98e4c3630c541931
For instance, I have read in numerous places that I should turn off register_globals. As a result, of course, most code that I get from users doesn't work unless I go in and modify all the global variables to use $SERVER, $GET, etc. It's a good learning tool, of course, but after a while it gets annoying.
This Dev-PHP IDE is a nice tool. I've been using Ultra-Edit for most of my development, and it was easy to use for PHP as well, but I just may start using Dev-PHP. So what does this have to do with the thread? Well... it would be VERY cool if there was an option to indicate whether register_globals was turned on or off. That way, when I go to paste QUERY_STRING from the code bar, it would paste $QUERY_STRING if register_globals is on, and $_SERVER["QUERY_STRING"] if it were disabled. Yes, a minor thing, but there you go!