Skip to content

Instantly share code, notes, and snippets.

<?php
echo $this->Form->input('Applicant.tel_code_id', array(
'label' => 'International Telephone Code',
'options' => $telCode,
'empty' => $applicationData['Applicant']['tel_code_id'] === null,
'selected' => $applicationData['Applicant']['tel_code_id'],
));