source: branches/feature-module-update/html/test/naka/test.php @ 15078

Revision 15078, 481 bytes checked in by nanasess, 17 years ago (diff)

r15064 から svn cp
とりあえず暫定コミット.

  • UTF-8 に変更
  • slib.php, glib.php のクラス化
  • LC_Page の抽象化(一部)
Line 
1<html lang="ja">
2<head>
3<meta http-equiv=Content-Type content="text/html; charset=EUC-JP">
4</head>
5
6<body>
7
8<table>
9<form name="form1" action="test.php" method="POST">
10<tr>
11    <td>文字を入力してください</td>
12    <td><input type="text" name="string"></td>
13    <td><input type="submit" value="送信"></td>
14</tr>
15</form>
16</table>
17
18<?php
19require_once("../../require.php");
20
21    if(isset($_POST['string'])) {
22        print("string is " . $_POST['string']);
23    }
24?>
25
26</body>
27</html>
Note: See TracBrowser for help on using the repository browser.