script
function checkAll() {
var i;
main = document.getElementById(“main”);
mainInput = main.getElementsByTagName(“input”);
sub = document.getElementById(“sub”);
subInput = sub.getElementsByTagName(“input”);
for (i = 0; i < subInput.length; i++){
subInput[i].checked = mainInput[0].checked;
}
}
html
<dt id=”main”><label><input type=”checkbox” />Main</label>
</dt><dd id=”sub”> <input type=”checkbox” />Sub1<input type=”checkbox” />Sub2 </dd>
openssl req -noout -text CSRファイル
Certificate Request:
.
.
.
.
echo mb_detect_encoding();
↓
UTF-8,EUC-JP などなど
httpd.conf の
EnableMMAP off を
有効にする!
KeepAlive Off
を
KeepAlive On
にする。
apache 再起動
これはhtmlファイルがSSIで実行されている環境で、HTMLコメントに
解決方法としては、HTMLコメントに
Chrome ではソース表示の際URLをリクエストしているそう。
POSTデータは見ることができない・・・
Options +Includes
と
AddOutputFilter INCLUDES .shtml .html
を追加する。
CSS のお勉強:マウスオーバーで背景画像を入れ替える
■ソース
—————
クリックする
未訪問
■スタイルシート
—————
p.Reg a{
display : block ;
width : 100px ;
padding-top : 100px ;
text-align : center ;
background-repeat : no-repeat ;
background-position : top center ;
}
p.Reg a:link{
color : blue ;
background-image : url(030331e.jpg) ;
}
p.Reg a:visited{
color : purple ;
background-image : url(030331f.jpg) ;
}
p.Reg a:hover{
color : red ;
background-image : url(030331g.jpg) ;
}
p.Reg a:active{
color : green ;
RewriteRule .* notfound.html
tinyMCE.init({
force_br_newlines : true,
forced_root_block : ”,
force_p_newlines : false,
————————
Shift + Enterをしなくてもpタグはつかずに改行できますよ。
上記の設定で解決!