Re: [PHP] 2 ifs embedded?

2009-07-31 Thread Jim Lucas
Miller, Terion wrote: > > > On 7/31/09 11:03 AM, "Miller, Terion" wrote: > > > > > On 7/31/09 10:54 AM, "Jim Lucas" wrote: > > Miller, Terion wrote: >> >> On 7/31/09 10:14 AM, "Bastien Koert" wrote: >> >> On Fri, Jul 31, 2009 at 10:59 AM, Miller, >> Terion wrote: >>> >>> On 7/31/09 9:53 A

Re: [PHP] 2 ifs embedded? (RESOLVED)

2009-07-31 Thread Miller, Terion
On 7/31/09 10:54 AM, "Jim Lucas" wrote: Miller, Terion wrote: > > > On 7/31/09 10:14 AM, "Bastien Koert" wrote: > > On Fri, Jul 31, 2009 at 10:59 AM, Miller, > Terion wrote: >> >> >> On 7/31/09 9:53 AM, "Bastien Koert" wrote: >> >> On Fri, Jul 31, 2009 at 10:28 AM, Miller, >> Terion wrote: >

Re: [PHP] 2 ifs embedded?

2009-07-31 Thread Miller, Terion
On 7/31/09 11:03 AM, "Miller, Terion" wrote: On 7/31/09 10:54 AM, "Jim Lucas" wrote: Miller, Terion wrote: > > > On 7/31/09 10:14 AM, "Bastien Koert" wrote: > > On Fri, Jul 31, 2009 at 10:59 AM, Miller, > Terion wrote: >> >> >> On 7/31/09 9:53 AM, "Bastien Koert" wrote: >> >> On Fri, Ju

Re: [PHP] 2 ifs embedded?

2009-07-31 Thread Miller, Terion
On 7/31/09 10:54 AM, "Jim Lucas" wrote: Miller, Terion wrote: > > > On 7/31/09 10:14 AM, "Bastien Koert" wrote: > > On Fri, Jul 31, 2009 at 10:59 AM, Miller, > Terion wrote: >> >> >> On 7/31/09 9:53 AM, "Bastien Koert" wrote: >> >> On Fri, Jul 31, 2009 at 10:28 AM, Miller, >> Terion wrote: >

Re: [PHP] 2 ifs embedded?

2009-07-31 Thread Jim Lucas
Miller, Terion wrote: > > > On 7/31/09 10:14 AM, "Bastien Koert" wrote: > > On Fri, Jul 31, 2009 at 10:59 AM, Miller, > Terion wrote: >> >> >> On 7/31/09 9:53 AM, "Bastien Koert" wrote: >> >> On Fri, Jul 31, 2009 at 10:28 AM, Miller, >> Terion wrote: >>> >>> >>> On 7/31/09 8:58 AM, "m0s" wrot

Re: [PHP] 2 ifs embedded?

2009-07-31 Thread Miller, Terion
On 7/31/09 10:14 AM, "Bastien Koert" wrote: On Fri, Jul 31, 2009 at 10:59 AM, Miller, Terion wrote: > > > > On 7/31/09 9:53 AM, "Bastien Koert" wrote: > > On Fri, Jul 31, 2009 at 10:28 AM, Miller, > Terion wrote: >> >> >> >> On 7/31/09 8:58 AM, "m0s" wrote: >> >> (!empty($row['notes']) && Is

RE: [PHP] 2 ifs embedded?

2009-07-31 Thread Chrome
> On 7/31/09 9:53 AM, "Bastien Koert" wrote: > > On Fri, Jul 31, 2009 at 10:28 AM, Miller, > Terion wrote: > > > > > > > > On 7/31/09 8:58 AM, "m0s" wrote: > > > > (!empty($row['notes']) && IsAlpha($row['notes'])) > > > > I tried that and this one: > > > > If (!empty($row['notes']) && ctype_alph

Re: [PHP] 2 ifs embedded?

2009-07-31 Thread Bastien Koert
On Fri, Jul 31, 2009 at 10:59 AM, Miller, Terion wrote: > > > > On 7/31/09 9:53 AM, "Bastien Koert" wrote: > > On Fri, Jul 31, 2009 at 10:28 AM, Miller, > Terion wrote: >> >> >> >> On 7/31/09 8:58 AM, "m0s" wrote: >> >> (!empty($row['notes']) && IsAlpha($row['notes'])) >> >> I tried that and this

Re: [PHP] 2 ifs embedded?

2009-07-31 Thread Miller, Terion
On 7/31/09 9:53 AM, "Bastien Koert" wrote: On Fri, Jul 31, 2009 at 10:28 AM, Miller, Terion wrote: > > > > On 7/31/09 8:58 AM, "m0s" wrote: > > (!empty($row['notes']) && IsAlpha($row['notes'])) > > I tried that and this one: > > If (!empty($row['notes']) && ctype_alpha($row['notes'])) > > It

Re: [PHP] 2 ifs embedded?

2009-07-31 Thread Bastien Koert
On Fri, Jul 31, 2009 at 10:28 AM, Miller, Terion wrote: > > > > On 7/31/09 8:58 AM, "m0s" wrote: > > (!empty($row['notes']) && IsAlpha($row['notes'])) > > I tried that and this one: > > If (!empty($row['notes']) && ctype_alpha($row['notes'])) > > It didn't display the notes at all... > > And this

Re: [PHP] 2 ifs embedded?

2009-07-31 Thread Miller, Terion
On 7/31/09 8:58 AM, "m0s" wrote: (!empty($row['notes']) && IsAlpha($row['notes'])) I tried that and this one: If (!empty($row['notes']) && ctype_alpha($row['notes'])) It didn't display the notes at all... And this one...doesn't display if the field has a 0 in it but I still need it to? I

Re: [PHP] 2 ifs embedded?

2009-07-31 Thread m0s
Miller, Terion wrote: > I need this to say : If row notes is not empty and is alpha echo notes > > How do I get the is alpha part in here; > > If (!empty($row['notes'])) { > > > echo(" $trimNotes "); > > } > > I tried. > > If (IsAlpha($row['notes'])) { > > > echo(" $trimNotes ");

Re: [PHP] 2 ifs embedded?

2009-07-31 Thread Ashley Sheridan
On Fri, 2009-07-31 at 06:53 -0700, Miller, Terion wrote: > I need this to say : If row notes is not empty and is alpha echo notes > > How do I get the is alpha part in here; > > If (!empty($row['notes'])) { > > > echo(" $trimNotes "); > > } > > I tried. > > If (IsAlpha($row['note