<input type=”text” readonly>
または
<input type=”text” disabled=”disabled”>
Smarty:テンプレートのコンパイルファイルを破棄する
// 指定したテンプレートのコンパイルファイルを破棄する
$smarty->clear_compiled_tpl(“index.tpl”);
// コンパイルディレクトリの中身を全て破棄する
$smarty->clear_compiled_tpl();
PHP:よりランダムに乱数出力
srand((double)microtime()*1000000);
$p = round(rand(0,$pattern-1));