> Just basic Php programming issues: Why the program doesn't work.

Which is your immediate goal, to learn a debugger tool, or to fix a
specific bug?  While learning a new tool is almost always valuable...
If the immediate need is to fix one bug, an alternate approach you can
consider is debug-by-log, for which here is a bit of a useful recipe...

  $lognm = '/tmp/debug.out';
  $logfp = fopen($lognm, 'a');
  $dump = var_export($variable, 1);
  fwrite($logfp, $dump);
  fclose($logfp);
_______________________________________________
LinuxUsers mailing list
[email protected]
http://socallinux.org/cgi-bin/mailman/listinfo/linuxusers

Reply via email to