※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
<?php
class SampleController extends AppController {
public $name = "Sample";
public $uses = null;
public $autoRender = true;
public $layout = "sample";
public $autoLayout = true;
function index(){
$this->set("page_title","Sample Page");
$this->set("content_header","Sample Page.");
$this->set("content_footer","copyright SYODA-Tuyano. 2010.");
}
function result(){
App::import("sanitize");
$input = $this->params['form']['input'];
$result = Sanitize::stripAll($input);
$this->set("result",$result); $this->set("page_title","Sample Page");
$this->set("content_header","Sample Page.");
$this->set("content_footer","copyright SYODA-Tuyano. 2010.");
}
}
| << 前へ | 次へ >> |