<!Doctype html>
<head><title>waw</title></head>
<body>
<form method="post" action="">
小明:<input type="text" name="mark[]"><br/>
小红:<input type="text" name="mark[]"><br/>
小白:<input type="text" name="mark[]"><br/>
小李:<input type="text" name="mark[]"><br/>
小兰:<input type="text" name="mark[]"><br/>
<input type="submit" name="postmethod" value="提交">
</form>
</body>
</html>
<?php
$str=@$_POST['mark[]'];
echo"接收的成绩:.$str.";
?>
$ret=$_POST['mark'];
print_r($ret);试试