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

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

svn properties 設定

  • svn:mime-type - application/x-httpd-php; charset=UTF-8
  • svn:keywords - Id
  • Property svn:keywords set to Id
  • Property svn:mime-type set to application/x-httpd-php; charset=UTF-8
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.