[ホーム] -> [Apache + PHP + PostgreSQL 実験室]

test-php/table.html

ソース

このソースをダウンロードする。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
 "http://www.w3.org/TR/html4/strict.dtd">
<html lang="ja">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=euc-jp">
    <title>What's table name?</title>
  </head>
  <body>
    <h1>テーブル表示</h1>
    <form action="table.php" method="POST">
      <table border="0"
             summary="表示するテーブルを入力するフォームです。">
        <tr>
          <td>データベース名</td>
          <td><input type="text" name="dbname" value="template1"></td>
        </tr>
        <tr>
          <td>テーブル名</td>
          <td><input type="text" name="table" value="pg_language"></td>
        </tr>
        <tr align="center">
          <td colspan="2">
            <input type="submit" value="Submit">
            <input type="reset" value="Clear">
          </td>
        </tr>
      </table>
    </form>
  </body>
</html>

実行

この HTML を表示する。

戻る