foreach ($td2 as $key => $value) { echo "{$key} = {$value}<br>\n"; } $propertyType = $td1->propertyType; $property1 = new Land(); $property1->selectRecord($td1->propertyID); echo "property1 values<br>\n"; foreach ($property1 as $key => $value) { echo "{$key} = {$value}<br>\n"; } $afsID = $property1->getAfsID(); $afs = new AFS(); $afs->selectRecord($afsID); echo "AFS values<br>\n"; foreach ($afs as $key => $value) { echo "{$key} = {$value}<br>\n"; } $tdNum = $td1->getTaxDeclarationNumber(); $taxDue = new Dues(); $taxDue->create($tdNum, "2002-01-01"); echo "taxDue values<br>\n"; foreach ($taxDue as $key => $value) { echo "{$key} = {$value}<br>\n"; } $dueDate = $taxDue->getDueDate(); $dueTime = strtotime($dueDate); echo "TaxDue date {$dueDate} and time {$dueTime} <br>\n"; echo "End test <br>\n"; ?>