You are currently viewing archive for July 2008

07/08: 画面遷移についてのメモ

Category: General | Posted by: ayumi | Add comment
プログラムを外注や、他人にお願いする際ですが、画面遷移を作るように心がけています。
その際によく忘れることがあるので、メモしておきます。

input typeのbuttonの設定です。
<input type="button" value=" 確認画面へいく " onClick="location.href='次の画面のURL'">


上記の設定で、ボタンにリンクを指定することができます。

07/05: htmlspecialcharsの逆の処理

Category: General | Posted by: ayumi
$html = "<img src='/media/20080705.gif' />";
$html1 = htmlspecialchars($html);
$html2 =htmlspecialchars_decode($html1);
echo $html1;
表示結果:<img src='/media/20080705.gif' />
echo $html2;

07/02: Linuxで大量なファイルを削除したい場合の注意点

Category: General | Posted by: ayumi
ディレクトリを残したままで、中のファイルを消した場合に気をつけること。
中のファイルが大量だと下記のコマンドではエラーを起こす
rm -f *.log

/bin/rm: 引数リストが長すぎます

大量なファイルを削除したい場合は、下記のコマンドで消せます。
echo ./*.log | xargs rm

Search

Navigation

<   2008-07   >
  12345
6789101112
13141516171819
20212223242526
2728293031