Reputation:
I am using Netbeans with xDebug for php debugging.
There is an output window in Netbeans, I want to know how can I have PHP output at each step or at least something like print_output($data)
on the output window ?
Upvotes: 0
Views: 274
Reputation: 38981
When you step through the code all generated output will be shown in the Output
window.
STRG + 4 or Windows -> Output -> Output
to see the window.
Upvotes: 1