If you edit PHP using SciTE, you should get more productive with it!
You can press F5 to run the current program and get output to a console.
Most web developers do not associate the console with making web pages, but there are gains in your development speed.
No webserver is involved when running the PHP executable as is. No overhead, just what PHP outputs after interpreting your source code.
When you press F5 in SciTE you run PHP with its standard parameters. This might be at odds with your
current host for your current project. Say, the error_reporting setting is way too low, and spouts
meaningless notices at you, slowing down your eye-scanning.
Not acceptable.
What we do is configure the command line that launches the PHP executable from within SciTE. I did that like this:
Continue reading
