忍者ブログ
6月18日設置
Posted by - 2025.01.18,Sat
×

[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

Posted by No Name Ninja - 2010.11.04,Thu

接続中のセッションでautocommitの値を確認
mysql> select @@autocommit;

autocommitを無効にする
mysql> set autocommit=0;

コミット
mysql> commit;

ロールバック
mysql> rollback;
PR
Posted by No Name Ninja - 2010.10.15,Fri

show table status;
もしくは
show table status \G
Posted by No Name Ninja - 2010.09.01,Wed

ディレクトリ内の全てのファイルに対して反映
.htaccess

<Files ~ "\.(html|php)$">
Header add Pragma "no-cache"
Header set Cache-Control no-cache
</Files>


ページ単位
htmlファイル

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">

#"pragma" は HTTP/1.0準拠のブラウザを対象とし、
#"cache-control" は HTTP/1.1準拠のブラウザを対象とする指令

#pragmaは互換性のために残されている
#新しく追加するなら後者の「cache-control」を使用した方がいい

#XHTML1.1 では、これら http-equiv属性の指定は、
#HTML互換のため指定自体が推奨されていない
#文字コードやMIMEタイプ、リダイレクト、キャッシュの制御などは、
#直接、HTTPヘッダ情報に定義するために .htaccess などを使う

効かない場合は、有効期限もつける
<meta http-equiv="expires" content="0">

#<meta http-equiv="expires" content="秒数またはGMT" />
Posted by No Name Ninja - 2010.03.30,Tue

(css_hack.html)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</style>
<link rel="stylesheet" href="hack.css" type="text/css" />
</head>
<body>
hello world
</body>
</html>


(hack.css)

body {
color: red;
color : green\9;
*color : yellow;
_color : orange;
}
Posted by No Name Ninja - 2010.03.30,Tue


全IEに適用
<!--[if IE]>
<p>IEだけで表示</p>
<![endif]-->

IE6以上に適用
<!--[if gte IE 6]>
<p>IE6以上だけで表示</p>
<![endif]-->

IE6以下に適用
<!--[if lte IE 5]>
<p>IE6以下だけで表示</p>
<![endif]-->

IE6以外に適用
<!--[if !IE 6]>
<p>IE6以外だけで表示</p>
<![endif]-->

全IE以外に適用
<![if !IE]>
<p>IE以外のブラウザで表示</p>
<![endif]>

※コメントの書き方が変わる
<!-- → <!
--> → >



IE6以下のみに適用するスタイルシート
<link rel="stylesheet" type="text/css" href="common.css">
<!--[if lte IE 6 ]>
<link rel="stylesheet" type="text/css" href="ie6.css">
<![endif]-->
カレンダー
12 2025/01 02
S M T W T F S
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
フリーエリア
最新コメント
[05/16 backlink service]
最新トラックバック
プロフィール
HN:
No Name Ninja
性別:
非公開
バーコード
ブログ内検索
カウンター
アクセス解析
Template by mavericyard*
Powered by "Samurai Factory"
忍者ブログ [PR]