//home/your_account/www/sampdomain/.htaccess
RewriteEngine on
RewriteBase /
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
...続きを表示
echo $this->form->postLink(
//第1引数はリンクに表示される文字列
'削除',
//第2引数はリンク先、変数はControllerのactionに渡される
array('action' => 'delete', $keyword_id, $user_id),
...続きを表示
$data = $this->MODEL->find('all', array(
'conditions' => array(
'and' => array(
'MODEL.email' => $param[0][MODEL]["email"],
'MODEL.id <' => $param[0][MODEL]["id"],
...続きを表示