Re: CakePHP Another winner

2007-05-10 Thread Brian Dailey
Congratulations to the developers and contributors to CakePHP. It's definitely worthy of every award it gets. I hope financial success follows. ;-) - Brian Software Developer NY, NY (nyphp.org) On 5/10/07, Tane Piper <[EMAIL PROTECTED]> wrote: > > Oh, here is the direct link to the awards: > >

Re: NULL values

2007-04-30 Thread Brian Dailey
Add the other conditions as a string, e.g., $sqlConditions = "myfield IS NULL AND myfield2 = 'blarg'"; On 4/30/07, codecowboy <[EMAIL PROTECTED]> wrote: > > what if that is only one of the conditions? > > On Apr 29, 9:53 pm, Sergei <[EMAIL PROTECTED]> wrote: > > $sqlConditions="myfield IS NULL" >

Re: PHPmailer

2007-03-26 Thread Brian Dailey
You won't need to use $this-> when calling it from a controller. You'll probably need to do something like: $mailer = new Mailer; $mailer->AddAddress('[EMAIL PROTECTED]'); I suggest brushing up on PHP OOP techniques. The book "PHP 5 Objects, Patterns, and Practice" by Zandstra is a great way to