Changeset 16342
- Timestamp:
- 2007/10/09 12:32:31 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/html/test/naka/test.php
r15532 r16342 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 1 <?php 19 require_once("../../require.php"); 20 21 if(isset($_POST['string'])) { 22 print("string is " . $_POST['string']); 23 } 2 require_once("../../require.php"); 3 $path = MODULE2_PATH . "mdl_speedmail/config.php"; 4 include($path); 24 5 ?> 25 26 </body>27 </html>
Note: See TracChangeset
for help on using the changeset viewer.