views:

163

answers:

1

I remember there was shortcut key (probably F8) in Turbo C that showed which codeblock C would execute next.

I wonder if something similar is availabe for PHP? I'm an absoulte beginner and sometime I just don't get how things are executed in PHP.

Thanks.

+1  A: 

You can take a look at the debugging support of Eclipse PDT, it support both xdebug and zend debug extensions/protocol.

You would have to install the PHP extension on your webserver (Xdebug or Zend debug) after you would be able to run step by step you scripts and also see the content of variable in Eclipse PDT.

Also a good start from scratch tutorial here.

RageZ
Great. Any other alternatives or commercial IDEs that have it built-in?
Nimbuz
Zend Studio have some debugger but that's basically the same things having PDT and the Zend debug extension. So I think PDT is the best option. there is also Komodo from active perl but it's also using xdebug so ...
RageZ
see http://stackoverflow.com/questions/1494288/good-free-php-debugger
VolkerK