Hi guys,

I'm taking my first stabs at combining AS3 with PHP and MySQL. I've queried using AS3 and recieved data and all is working fine. What my problem is, is that my workflow at the moment is:

  1. write the php script
  2. test the php script with hardcoded values
  3. replace hardcoded values with $POST values
  4. test the script by letting AS3 post values to it.


This is somewhat cumbersome, as I only get error messages concerning the AS3 when debugging the AS3 and PHP communication. I'm using Netbeans as an IDE, but this seems to only debug when purely running in PHP. I'd like to get errors from PHP too. Is there a some kind of debugger that can listen to PHP files while it isn't calling them itself, or should I write some kind of logger function in PHP? If somebody has any other suggestions to make debugging less of a chore I'm glad to hear your solutions.

Thanks in advance!