public function index()
{
$str = $this->request->data('text1');
$msg = 'typed: ' . $str;
if ($str == null)
{ $msg = "please type..."; }
$this->set('message', $msg);
}
<?=$this->Form->text('text1') ?>
<?=$this->Form->submit('OK') ?>
['value'=>'please input...']
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
<div> <h3>Index Page</h3> <p><?= $message ?></p> <?=$this->Form->create(null,[ 'type' => 'post', 'url' => ['controller' => 'Helo', 'action' => 'index']] ) ?> <?=$this->Form->text('text1') ?> <?=$this->Form->submit('OK') ?> <?=$this->Form->end() ?> </form> </div>
<< 前へ | 次へ >> |