http://localhost:8765/helo/index?id=123&name=taro
$変数 = $this->request->query( キー );
http://localhost:8765/helo/index?id=1001&name=john
$id = $this->request->query('id');
$name = $this->request->query('name');
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
<?php namespace App\Controller; use App\Controller\AppController; class HeloController extends AppController { public function index() { $id = $this->request->query('id'); $name = $this->request->query('name'); $this->set('message', 'your id:' . $id . ', name:' . $name); } }
<< 前へ |