Re: [PHP] Not Null?

2007-10-31 Thread Zoltán Németh
2007. 10. 31, szerda keltezéssel 10.48-kor Steve Marquez ezt írta: > Greetings, > > I have a script that looks for the variable to be NULL and then execute. Is > there a way for the script to look for anything or something in the variable > and then execute? > > Ex: > > If (Œ$a¹ == Œ ANYTHING¹)

Re: [PHP] Not Null?

2007-10-31 Thread Daniel Brown
On 10/31/07, Robin Vickery <[EMAIL PROTECTED]> wrote: > On 31/10/2007, Steve Marquez <[EMAIL PROTECTED]> wrote: > > Greetings, > > > > I have a script that looks for the variable to be NULL and then execute. Is > > there a way for the script to look for anything or something in the variable > > and

Re: [PHP] Not Null?

2007-10-31 Thread Robin Vickery
On 31/10/2007, Steve Marquez <[EMAIL PROTECTED]> wrote: > Greetings, > > I have a script that looks for the variable to be NULL and then execute. Is > there a way for the script to look for anything or something in the variable > and then execute? > > Ex: > > If (Œ$a¹ == Œ ANYTHING¹) { oh dear, kr

RE: [PHP] not null

2001-08-08 Thread Slavomir Slizik
if (empty($value)) { ... } On Wed, 1 Aug 2001, Craig Vincent wrote: > > > When a field is declared as an integer, not null and is the primary, > > how would I address it's empty set? > > > > ex: if($value == ???) > > { > > bla > > bla > > bla > > } >

Re: [PHP] not null

2001-08-01 Thread mike cullerton
on 8/1/01 12:50 PM, Jeremy Morano at [EMAIL PROTECTED] wrote: > Hi, > > When a field is declared as an integer, not null and is the primary, > how would I address it's empty set? nut sure i understand the question. if the field is NOT NULL, how could $value be empty? > > ex: if($value == ???

RE: [PHP] not null

2001-08-01 Thread Craig Vincent
> When a field is declared as an integer, not null and is the primary, > how would I address it's empty set? > > ex: if($value == ???) > { > bla > bla > bla > } > > > My condition wants there to be nothing in $value. Are you referring to the