<td bgcolor="#FFFFFF"><input type="text" name="auther[]" value="auther"  /></td>
 <td bgcolor="#FFFFFF"><input type="text" name="auther[]" value="auther1"  /></td>
 <td bgcolor="#FFFFFF"><input type="text" name="auther[]" value="auther2"  /></td>

解决方案 »

  1.   

    我真的很笨呢。随便 接受页面应该怎样才能打印出来呢auther,auther1,auther2
      

  2.   

    <td bgcolor="#FFFFFF"><input type="text" name="auther[]" value="auther"  /></td>
     <td bgcolor="#FFFFFF"><input type="text" name="auther[]" value="auther1"  /></td>
     <td bgcolor="#FFFFFF"><input type="text" name="auther[]" value="auther2"  /></td>
    在接受页面的时候这么写
    $auther = $_POST['auther'];
    //现在auther是一个数组了
    print_r($auther);
    看一下你就明白了,按auther input出现的顺序将值存放到这个数组中了
      

  3.   

    <?php 
    //print $_POST["author"];
    $id=$_POST['author'];
    print count($id);
    for ($i=0;$i<count($id);$i++ )
    {
    print "$id[$i]"."," ;
    }
      
     ?>
    是不是这样