Re: Limited number of Conditions??

2007-12-12 Thread Mr-Yellow
Tried error_reporting with no results. Found it tho, lil odd. if (!isset($this->params['url']['hasflv'])) { $this->params['url']['hasflv'] = 0; } else if ($this->params['url']['hasflv']=='1') { $this->params['url']['hasflv'] = 1; } Later I had if (isset($this->params['u

Re: Limited number of Conditions??

2007-12-12 Thread Jon Bennett
> $arrWhere = array(); > $arrWhere['DATE(Pack.PackDate)'] = '<= -!CURDATE()'; > $arrWhere['Pack.Flag_Pub'] = 1; > $arrWhere['Pack.Flag_HasFLV'] = 1; > $arrWhere['Flag_SMailOut'] = 1; > $arrWhere['Flag_SMailRec'] = 1; > //$arrWhere['Flag_Clipped'] = 1; > //$arrWhere['Flag_Creative'] = 1; > //$arrWh

Re: Limited number of Conditions??

2007-12-12 Thread Chris Hartjes
On Dec 12, 2007 8:17 PM, Mr-Yellow <[EMAIL PROTECTED]> wrote: > > Just tried putting them inside an 'AND' and no go > > -Ben > What's the actual error message that's being generated? A blank page happens when you have PHP configured to not show any errors to the user, but errors should be ap

Re: Limited number of Conditions??

2007-12-12 Thread Mr-Yellow
Just tried putting them inside an 'AND' and no go -Ben On Dec 13, 12:12 pm, Mr-Yellow <[EMAIL PROTECTED]> wrote: > $arrWhere = array(); > $arrWhere['DATE(Pack.PackDate)'] = '<= -!CURDATE()'; > $arrWhere['Pack.Flag_Pub'] = 1; > $arrWhere['Pack.Flag_HasFLV'] = 1; > $arrWhere['Flag_SMailOut']

Limited number of Conditions??

2007-12-12 Thread Mr-Yellow
$arrWhere = array(); $arrWhere['DATE(Pack.PackDate)'] = '<= -!CURDATE()'; $arrWhere['Pack.Flag_Pub'] = 1; $arrWhere['Pack.Flag_HasFLV'] = 1; $arrWhere['Flag_SMailOut'] = 1; $arrWhere['Flag_SMailRec'] = 1; //$arrWhere['Flag_Clipped'] = 1; //$arrWhere['Flag_Creative'] = 1; //$arrWhere['Flag_AutoBan'