私は次のHTMLフォームを持っています
<form id="form2" name="form2" method="post" action="process.php">
<table width="271" border="1">
<tr>
<td width="5"><input name="txtIdone2" type="text" id="txtIdone2" value="Richard" /></td>
<td width="250">
<label for="txtIdone"></label>
<input name="txtIdone" type="text" id="txtIdone" value="Hopes" />
</td>
</tr>
<tr>
<td><input name="txtIdone3" type="text" id="txtIdone3" value="Testing" /></td>
<td><input name="txtIdone4" type="text" id="txtIdone4" value="this" /></td>
</tr>
<tr>
<td><input name="txtIdone5" type="text" id="txtIdone5" value="it" /></td>
<td><input name="txtIdone6" type="text" id="txtIdone6" value="works" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="btnTest" id="btnTest" value="Submit" />
</td>
</tr>
</table>
</form>
これは、次のコードを持つprocess.phpに送信されます。
$data = array($_POST);
print_r ($data);
単純。ただし、通常の配列が返される代わりに、マルチ配列を受け取っています。次に例を示します。
Array
(
[0] => Array
(
[txtIdone2] => Richard
[txtIdone] => Hopes
[txtIdone3] => Testing
[txtIdone4] => this
[txtIdone5] => it
[txtIdone6] => works
)
)
通常の配列を返したいだけです。私は何が間違っているのですか?
ありがとう。