I’ve tried to use Eclipse on Linux but was not able to get it to work after about 4 hours of trying and regressed to just inserting echo comments everywhere like I had been doing.
Now when I debug my Javascript in IE, I just hit F12 and a few more keys and I’m stepping through the Javascript.
I’m back on Windows so I need a Window Solution that is hopeufully simple, I’m not lazy – just pressed for time.
It would be cool if once javascript passed control to PHP, the debugger just kept stepping into the PHP, but does this even exist?
Sounds like you are looking for something like FirePHP or ChromePHP. Those are Firefox and Chrome extensions which allow you to display anything that your PHP script output during runtime in either Firebug (needs to be installed in Firefox) or native Chrome Developer Tools (doesn’t require any extension in Chrome).
Keep in mind though that they are merely capable of displaying messages from your script and don’t offer options such as watches, breakpoints etc.
A full-blooded PHP debugger / profiler like xDebug would still be a better solution in my opinion offering you a much better and leaner way of debugging.