<input type="image" src="画像のURL" onClick="submit"/> best web hosting USA…
ピックアップ記事
フォームの送信ボタンを画像にする
2010年04月16日
過去Blog
PHP strstr stristr ある文字列が含まれるかどうか調べる
2010年06月11日
過去Blog
$string = 'Hello World!';
if(stristr($string, 'earth') === FALSE) {
echo '"earth" not found in string';
}
// 出力は "earth" not found in string となります
参照元:http://www.php.net/manual/ja/function.st…
UITextField を自動で入力待ち状態にする(フォーカスをあてる)方法
2010年12月26日
過去Blog
UITextField が設置されているviewが表示されたら、自動で入力待ち状態にする方法です。
- (void)viewDidLoad {
[super viewDidLoad];
[textField becomeFirstResponder];
}
new york limo…
サーバの負荷(メモリ使用量を調べる)sar -r
2010年03月31日
過去Blog
sarコマンドを利用するために必要なシステムをインストール
# yum install -y sysstat
phpでデータを抜き出す
$pp = popen('/usr/bin/sar -r 1 1', 'r');
while(!feof($pp)):
var_dump(fgets($pp));
endwhile;
pclose($pp);
$pp = popen('/usr/bin/…
UITextField と UITextView のキーボード関連
2011年04月28日
過去Blog
http://www.toyship.org/2011/03/uitextfielduitextview%E3%81%AE%E6%96%87%E5%AD%97%E5%85%A5%E5%8A%9B%E3%81%A7%E8%A6%9A%E3%81%88%E3%81%A6%E3%81%8A%E3%81%8F%E3%81%A8%E4%BE%BF%E5%88%A9%E3%81%AA%E3%81%93%E3%…
graffiti on the web 
この投稿へのコメント
コメントはまだありません。