问答详情
源自:3-1 案例开发之获得搜索关键字

为什么我输入提交后 不论是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>


提问者:wangping1985 2015-02-28 11:19

个回答

  • 起早点
    2015-02-28 13:50:20

    拼写错误以外 form中action 属性为空了

  • wangping1985
    2015-02-28 11:26:19

    哎 知道啦 FORM 写成FROM啦