我有这个带有日期输入的表格。
echo $this->Form->create('Nodata');
echo $this->Form->input('date1', array('type' => 'date', 'label' => 'From:'));
echo $this->Form->input('date2', array('type' => 'date', 'label' => 'To:'));
echo $this->Form->end('Get Hours');
提交表单后,我将在表单下方的同一视图中显示结果。
我的问题是我有一个不属于表单的链接,需要从表单上的日期字段中读取值(在视图中)以将其用作此链接的参数。
// date1 is the param I need to take the value from date input
<th> <?php echo $this->Html->link(__('Agents Detail'), array('controller' => 'qcas', 'action' => 'hours', 'paramProject' => $hour['Qca']['dir_id'], 'date1' => $this->data)); ?> </th>
请注意,此链接在表单之外,我需要一种方法来读取表单上的输入以在我的链接中用作参数。