Skip to content

Instantly share code, notes, and snippets.

@tareko
Created October 20, 2012 10:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tareko/3922878 to your computer and use it in GitHub Desktop.
Save tareko/3922878 to your computer and use it in GitHub Desktop.
Form
echo $this->Form->create('Billing');
echo $this->Form->input('Billing.0.healthcare_provider');
echo $this->Form->input('Billing.0.patient_birthdate');
echo $this->Form->input('Billing.0.payment_program');
echo $this->Form->input('Billing.0.payee');
echo $this->Form->input('Billing.0.BillingsItem.0.service_date');
echo $this->Form->input('Billing.0.BillingsItem.0.service_code');
echo $this->Form->input('Billing.0.BillingsItem.1.service_date');
echo $this->Form->input('Billing.0.BillingsItem.1.service_code');
echo $this->Form->end('Submit');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment