为什么我输入提交后 不论是GET 还是POST 都接受不到值呢?
<?php
header("content-type:text/html;charset=utf-8");
print_r($_POST);
?>
<html>
<head><title></title></head>
<body>
<from action="" method="post">
查询:<input type="text" name="keywords" value=""/>
<input type="submit" value="查询"/>
</from>
</body>
</html>