Not that I'm aware of.
In every incantation I've ever seen of the incrementing,

$correct++;

Is always, 100% equal to:

$correct = ($correct + 1);

But, maybe you ran into a case where it's not, you never know.

On Wed, 2004-03-17 at 12:00, Jake McHenry wrote:
> > No.
> >
> > $correct++;
> >
> > Is all you need for the second condition, it automatically sets itself
> > back.
> >
> 
> 
> Does this always work? In my timesheet app, I have to do $counter = $counter
> + 1, because for some reason the $counter++; doesn't work. It just doesn't
> work, no incrementation of the variable. Is there something in php.ini that
> can prohibit this from working?
> 
> Thanks,
> Jake
-- 

Adam Voigt
[EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to