|
$data = array(
'name' => 'username',
'id' => 'username',
'value' => '<?php echo $this->validation->password;?>',
'maxlength' => '100',
'size' => '50',
'style' => 'width:50%',
);
我在value中加入了表單驗證顯示錯誤
為什麼在空格裡出來的都是<?php echo $this->validation->password;?>原來的字串
而沒有效果
是' '加錯了嗎還是需要加" " |
|