分别用ASP和PHP得到POST方法邮送的“firstname”
请求各位大佬帮助
期末不想挂科
没办法
这个题是要求给一个语句
贼捉急
$_POST['firstname'];//php接受firstname的值
<%Dim i i= Request.form("firstname") Response.write i %>//asp
前台表单大致示例如下
<form action=" " method="post"> <p>First name: <input name="firstname"></p> <p><input type="submit"></p> </form>
前台表单大致示例如下