|
|
';
echo '| Prop Type | Prop Date | Check Form | Check
| Policy | Business ID | Name |
Address | City | State | Zip |
Amount | Owners | ';
$wcnt = 0 ;
$dcnt = 0 ;
while ($dcnt < (count($retarray[$wcnt])-1)) {
$proptype = $retarray[0][$dcnt] ;
$propdate = $retarray[1][$dcnt] ;
$chkform = $retarray[2][$dcnt] ;
$chk = $retarray[3][$dcnt] ;
$policy = $retarray[4][$dcnt] ;
$businessind = $retarray[5][$dcnt] ;
$name = $retarray[6][$dcnt] ;
$address = $retarray[7][$dcnt] ;
$city = $retarray[8][$dcnt] ;
$state = $retarray[9][$dcnt] ;
$zip = formatzip($retarray[10][$dcnt]) ;
$amount = $retarray[11][$dcnt] ;
$owners = $retarray[12][$dcnt] ;
echo ''.$proptype.' | '.$propdate.' | '.$chkform.' | '.$chk.
' | '.$policy.' | '.$businessind.
' | '.$name.' | '.$address.' | '.$city.' | '.$state.' | '
.$zip.' | '.'$ '.$amount.' | '.$owners.' |
| ' ;
$dcnt++;
}
echo '' ;
//}
?>
|