<form action="" method="post">
<input type="text" name="a[]" />
<input type="text" name="a[]" />
<input type="submit" />
</form>
<?php echo $_POST['a'][1]; echo $_POST['a'][0];?>
input 数组
最新推荐文章于 2024-07-13 14:29:15 发布
<form action="" method="post">
<input type="text" name="a[]" />
<input type="text" name="a[]" />
<input type="submit" />
</form>
<?php echo $_POST['a'][1]; echo $_POST['a'][0];?>