html submtinig到php显示空白页面

时间:2015-09-03 16:09:44

标签: php html

尝试在html中使用forn元素。 写了一个简单的表单,和一个简单的php页面,但每次我点击提交一个空白页面出现了什么,我在PHP做什么:

我的html表单:

<form id="contact-main-form"  method="post" action="process.php">
<input id="contact-small-last-name-textbox"name="lastName" 
  type="text" placeholder="last name">
<input id="submit" type="submit" value="send">
</form>

我的php页面:

<html>
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
    <?php
    echo $firstName ;
    print "hello";
    ?>
</body>

谢谢;

1 个答案:

答案 0 :(得分:2)

在PHP中,来自某些范围的数据可用于超级全局变量。对于表单,您将使用超级全局$ _POST。

在您的示例中,您的&#34; lastName&#34;字段内容将在:

{{1}}

有些文档:http://php.net/manual/en/language.variables.superglobals.php