PHP

フォームに入力した内容を取得する:応用

PHP

ブログにアップする為、送信先メールアドレスは一旦消してあるが、送信成功になってもメール受信されず...http://oi0y0io.noor.jpHTML <html lang="ja"> <head> <meta charset="utf-8"> <title>お問い合わせフォーム</title> </head> <body> ■お問い合わせ内容を入力してください。 <br> <form action="check_inquiry.php" method="post"> お問い合わせタイトル: <br> </form></body></html>

ブログシステムの構築(7)

PHP

ブログシステムの構築(6)

PHP

ブログシステムの構築(5)

PHP

ブログシステムの構築(4)

PHP

ブログシステムの構築(3)

PHP

ブログシステムの構築(2)

PHP

登録画面を作る1. 「admin」フォルダーを作成 2. 新規PHPファイル作成 3. ファイル名を「input.php」とするPHP <html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja"> <head> </head></html>

ブログシステムの構築(1)

PHP

オリジナルブログシステムphpMyAdminを起動(1)新規データベースの作成 ・データベース名「my_blog」 ・照合順序「utf8_general_ci」(2)新規テーブルを作成 ・テーブル名「entry_table」 ・フィールド数「5」 ※「entry_id」:「A_I」にチェックする ※「entry_…

半角数字に直して数字であるかをチェックする

PHP

Function if, is_numeric mb_convert_kana html <form action="ex.php" method="get"> <dl> <dt>年齢(数字でご記入ください)</dt> <dd><input type="text" name="age" size="5" maxlength="3" />歳</dd> </dl> <input type="submit" value="送信する" /> </form> PHP

ドロップダウンボックスで選択され、取得した情報を表示する

PHP

Project PHP <html> <head> <meta charset="UTF-8"> <title>10歳から70歳まで選べる、ドロップボックスを表示する</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div id="wrap"> <div id="head"> <h1>10歳から70歳まで選べる、ドロップボックスを表示する</h1> </div> <div id="content"> </div></div></body></html>

PHP基礎

PHP

if文を使う(在庫が10の場合) PHP <html lang="ja"> <head> <meta charset="UTF-8"> <title>if文を使う(在庫が10の場合)</title> </head> <body> \n"; if($num > 0) print "いらっしゃいませ。在庫があります。\n"; print "<hr>\n"; print "ごゆっくりお過ごし下さい。\n"; ?> </body> </html> 複数の文を処理するif文 PHP …

PHP基礎

PHP

PHP基礎 PHP <html lang="ja"> <head> <meta charset="UTF-8"> <title>ようこそ!</title> </head> <body> \n"; print "PHPを始めましょう!"; ?> </body> </html> PHP <html lang="ja"> <head> <meta charset="UTF-8"> <title>変数を使う</title> </head> <body> </body></html>

XAMPPとMAMPの初期設定

PHP

日本語を正しく表示する為の設定・下記のそれぞれのファイルの一部を書き換える。 ・事前に必ずバックアップを取る事。XAMPPphp.iniの編集 C\xampp\php\php.ini MAMPphp.iniの編集 /Applications/MAMP/conf/php5.3/php.ini自宅MacのMAMPを立ち上げ、Dreamwea…

XAMPP & MAMP

PHP