2 | 3 | 4 | 5 | 6

$data = array(
[0] => array(
'hoge' => 6,
'fuga' => 2,
'piyo' => 3
...続きを表示



//home/your_account/www/sampdomain/.htaccess
RewriteEngine on
RewriteBase /
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
...続きを表示



//php.iniファイル
memory_limit = 32M
post_max_size = 32M
upload_max_filesize = 32M

...続きを表示



public function index()
{
//ここに通常の処理を書く

$this->Session->write('hoge', 'key_hoge');
...続きを表示



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"],
...続きを表示



echo nl2br($text);
...続きを表示



echo $this->Time->format($user['User']['created'], '%Y-%m-%d');
...続きを表示


2 | 3 | 4 | 5 | 6

▲上に戻る