<input type="image" src="画像のURL" onClick="submit"/> best web hosting USA…
ピックアップ記事
フォームの送信ボタンを画像にする
2010年04月16日
過去Blog
PHP short_open_tag
2010年04月05日
過去Blog
php.iniの short_open_tag = On にすることで <?php の省略形が使えるようになる。
<?php
echo "test";
?>
↓↓↓↓↓↓↓↓
<?
echo "test";
?> best-wedding.getbestnews.com…
objective-cのエラー詳細
2011年01月24日
過去Blog
http://www.a-tips.net/category/23/77 best web host…
tableViewに関する覚え書き
2011年01月03日
過去Blog
tableView に関する設定の説明です。
テーブル内のセクション数を設定する
以下の例では、2つのセクションをもつテーブルになります。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 2;
}
セクション内の行数を指定する
以下の例では、最初のセクションは、2行のデータを表示し、次のセクションでも2行のデータを表示します。…
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…
この投稿へのコメント
コメントはまだありません。