13.md—/Users/yasuhiko/Desktop/06

13 リンクを貼る

  • 一覧(index.ctp)に個別表示のリンクを貼る
    • echo $this->Html->link(); を使う -- [helper] linkタグを作ってくれる
echo $this->Html->link('削除', '#', array('class'=>'delete', 'data-post-id'=>$post['Post']['id']));
  • Home に戻るリンクを貼る (/app/view/layout/default.ctp)
<h1><?php echo $this->Html->link('Home', '/'); ?></h1>

PAGE TOP



< 前へ  <<目次に戻る  次へ >