This might be a little direction change, but is there a specific reason you
are going with PHP over something else, like Python or Ruby?

On Tue, Jun 28, 2011 at 12:15 PM, Paul Saenz <[email protected]>wrote:

> Actually what I was looking for was a few suggestions of what people
> think are good, that integrate most likely with Netbeans most likely,
> but possibly Aptana Suite that are basically used for execute and/or
> OO problems. Sorry I didn't realize that I was leaving out a few
> important details, and may not have been aware of a certain detail
> when I wrote the question.
>
> Those are actually nice little tools that you listed, and they also
> give me some good ideas.
>
> At this point I regret asking the question. If anyone feels
> overburdened has even the slightest objection to reply, then please
> don't respond.
>
> I really don't want anyone to feel concerned in any way about my
> progress. I certainly don't want cause any changes to SocalLug
> dynamics. I was just contrasting some of my views with what I see as
> some general views held on the list.
>
> On Tue, Jun 28, 2011 at 8:37 AM, Randall Whitman <[email protected]>
> wrote:
> >> 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
> >
> _______________________________________________
> LinuxUsers mailing list
> [email protected]
> http://socallinux.org/cgi-bin/mailman/listinfo/linuxusers
>
_______________________________________________
LinuxUsers mailing list
[email protected]
http://socallinux.org/cgi-bin/mailman/listinfo/linuxusers

Reply via email to