CakePHP $ this-> Form-> end('button text');在同一条线上

时间:2012-04-19 15:37:03

标签: cakephp

我有一个简单的cakephp表单,并希望“保存翻译”按钮是一个链接的LEFT,取消并将用户返回到索引,但我似乎无法让它工作。它始终将取消链接放在按钮下方。

我现在的代码:

<tr>
    <td>
        <?php echo $this->Form->end('Save Translation'); ?>
    </td>
    <td>
        <?php echo $html->link('Cancel', array('action' => 'index')); ?>
    </td>
</tr>

我试过的代码:

echo $this->Form->end('Save Translation',array('label'=>'Save Translation','div' => false));

1 个答案:

答案 0 :(得分:2)

试试这个:

<?php
    echo $this->Form->create();
    echo $this->Form->input('name');
    echo $this->Form->submit('Submit', 
        array('after' => $this->Html->link('Cancel', array('action' => 'index')))
    );
    echo $this->Form->end();
?>