createdDate Search Problems

12 posts by 4 authors in: Forums > CMS Builder
Last Post: April 10, 2012   (RSS)

By nmsinc - April 9, 2012

Hi Jason,

Used your suggestion coded as follows (I may have missed something):

//temporarily store createdDate
$tmpcreatedDate = $_REQUEST['createdDate'];
unset($_REQUEST['createdDate']);
list($member_companiesRecords, $member_companiesMetaData) = getRecords(array(
'tableName' => 'member_companies',
));

$tmpcreatedDate2 = $_REQUEST['createdDate'];
unset($_REQUEST['createdDate']);
list($accountsRecords, $accountsMetaData) = getRecords(array(
'tableName' => 'accounts',
));

list($claims_submissionRecords, $claims_submissionMetaData) = getRecords(array(
'tableName' => 'claims_submission',
));


I receive a Undefined index error for each of the "$tmpcreatedate" lines

Suggestion?

Thanks - nmsinc
nmsinc