Hi Bob,
Quick query. I have a form html table with with all parts of an address in separate fields and need to combine them all prior to db save.
This is what i have in DB save conditions
Thanks again
Ben
Quick query. I have a form html table with with all parts of an address in separate fields and need to combine them all prior to db save.
This is what i have in DB save conditions
<?php
$PickupAddress = $form->data['street_number'];
$PickupAddress .= $form->data['route'];
$PickupAddress .= $form->data['locality'];
$PickupAddress .= $form->data['administrative_area_level_1'];
$form->data['PickupAddress '] = $PickupAddress ;
?>
Thanks again
Ben