解决php处理批量提交的问题的方法

解决php处理批量提交的问题的方法

解决php处理批量提交的问题的方法<?php
解决php处理批量提交的问题的方法
$n=count($_POST['info']);
解决php处理批量提交的问题的方法
$temp=$_POST['info'];
解决php处理批量提交的问题的方法
解决php处理批量提交的问题的方法
for($j=0;$j<$n;$j++){
解决php处理批量提交的问题的方法
$temp_text=$_POST['text'.$temp[$j]];
解决php处理批量提交的问题的方法
echo'你输入的数据是'.$temp_text.'<br/>';
解决php处理批量提交的问题的方法}
解决php处理批量提交的问题的方法
?>
解决php处理批量提交的问题的方法
解决php处理批量提交的问题的方法
<formaction='test.php'method='post'>
解决php处理批量提交的问题的方法<?php
解决php处理批量提交的问题的方法
for($i=0;$i<5;$i++){
解决php处理批量提交的问题的方法
?>
解决php处理批量提交的问题的方法<inputtype='text'name='text<?phpecho$i?>'/><inputtype='checkbox'name='info[]'value='<?phpecho$i?>'><br/>
解决php处理批量提交的问题的方法<?php
解决php处理批量提交的问题的方法}
解决php处理批量提交的问题的方法
?>
解决php处理批量提交的问题的方法<inputtype='submit'value='ok'/>
解决php处理批量提交的问题的方法</form>