Re: Undefined variable error message, how can i define it?
Posted by Jim S. on 01/31/06 07:45
should'nt that be ?
if !(isset($mystuff)) {
$mystuff++;
"J.O. Aho" <user@example.net> wrote in message
news:4479jhFo4qcU2@individual.net...
> Jim S. wrote:
>> u meant like give it a value?
>> like
>> $mystuff = null
>> is that so?
>
> Yes, or
>
> if(isset($mystuff)) {
> $mystuff++;
> }
>
>
>
> //Aho