2011-12-01から1ヶ月間の記事一覧

配列からラジオボタンを生成する

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>配列からからラジオボタンを生成したい</title> </head> <body> <form method="post" action=""> </form></body></html>

データベースに登録すみかどうかチェックする

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>データベースに登録済みかどうかチェックしたい</title> </head> <body> </body></html>

メールアドレスの形式をチェックする

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>メールアドレスの形式をチェックしたい</title> </head> <body> </body></html>

ファイルの拡張子をチェックする

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>ファイルの拡張子をチェックしたい</title> </head> <body> </body></html>

日付かどうかをチェックする

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>日付かどうかチェックしたい</title> </head> <body> </body></html>

金額にカンマを付ける

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>金額にカンマを付けたい</title> </head> <body> </body></html>

数値かどうかをチェックする

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>数値かどうかをチェックしたい</title> </head> <body> </body></html>

文字数や桁数をチェックする

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>文字数と桁数をチェックしたい</title> </head> <body> </body></html>

特定の文字列を含むかチェックする

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>特定の文字列を含むかチェックしたい</title> </head> <body> </body></html>

データ入力時のみデータを処理する

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>データ入力時のみデータを処理するには?</title> </head> <body> </body></html>

データが代入されたかどうかをチェックする

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>データが代入されたかどうかをチェックしたい</title> </head> <body> </body></html>

日付入力のためのフォームを生成する

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>日付入力のためのフォームを生成したい</title> </head> <body> </body></html>

複数選択可能なセレクトメニューやチェックボックスの値を受け取る

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>複数選択可能なセレクトメニューやチェックボックスの値を受け取りたい</title> </head> <body> </body></html>

ボタンを使う

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>ボタンを使いたい</title> </head> <body> 結果:</p>'; echo '<p>ラジオボタンの値:</p>'; echo …

ファイル名入力ボックスを使う

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>ファイル名入力ボックスを使いたい</title> </head> <body> 結果:</p>'; echo '<p>ファイル名入力ボックス</p>

隠しフィールドを使う

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>隠しフィールドを使いたい</title> </head> <body> 結果:</p>'; echo '<p>隠しデータは?: ' . h(@$…</p>

チェックボックスを使う

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>チェックボックスを使いたい</title> </head> <body> 結果:</p>'; echo '<p>チェックボックス</p>'; i…

ラジオボタンを使う

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>ラジオボタンを使いたい</title> </head> <body> 結果:</p>'; echo '<p>ラジオボタン</p>'; echo …

セレクトメニューを使う

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>セレクトメニューを使いたい</title> </head> <body> 結果:</p>'; echo '<p>セレクトメニュー</p>'; e…

パスワードボックスを使う

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>パスワードボックスを使いたい</title> </head> <body> 結果:</p>'; echo '<p>パスワードボックス</p>';…

テクストエリアを使う

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>テキストエリアを使いたい</title> </head> <body> 結果:</p>'; echo '<p>テキストエリア1(cols属性に5…</p>

テキストボックスを使う

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>テキストボックスを使いたい</title> </head> <body> 結果:</p>'; echo '<p>テキストボックス(初期値を指定)…</p>

CSVファイルを出力する

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>CSVファイルを読み込みたい</title> </head> <body> </body></html>

CSVファイルを読み込む

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>CSVファイルを読み込みたい</title> </head> <body> </body></html>

ディレクトリ内のディレクトリやファイル名を取得する

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>ディレクトリ内のディレクトリやファイル名を取得したい</title> </head> <body> </body></html>

ディレクトリを削除する

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>ディレクトリを削除したい</title> </head> <body> </body></html>

ディレクトリが使用可能な容量を取得する

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>ディレクトリが使用可能な容量を取得したい</title> </head> <body> </body></html>

絶対パス名を取得する

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>絶対パス名を取得したい</title> </head> <body> </body></html>

パス名からディレクトリ名を取得する

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>パス名からディレクトリ名を取得したい</title> </head> <body> </body></html>

ディレクトリを作成する

PHP

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>ディレクトリを作成したい</title> </head> <body> </body></html>