php表单输入类型名称没有链接?

时间:2016-03-18 16:16:22

标签: php html

我正在尝试在我的网页上做一个简单的评论框,然后按照在线教程制作一个。 我完全按照说明操作,但是我的工作没有。 这是我的代码:

<?php 
if(isset($_POST['submit'])) {
    $fullname = $_POST['fullname'];
    echo $fullname;
}
?>

<html>
<head>
<title>Undefined Index Example</title>
</head>
<body>
<div style="margin: 100px auto 0;width: 300px;">
<h3>HTML Form</h3>
<form name="form1" id="form1" action="" method="post">
    <fieldset>
        Enter Full Name <input type="text" name="fullname" placeholder="Full Name" />
        <br />
        <input type="submit" name="submit" value="Submit" />
    </fieldset>
</form>
</div>
</body>
</html>

问题似乎是输入类型的名称没有与我的php部分链接。例如,php提交没有链接到html提交,所以它什么也没做。 我不知道如何解决这个问题,并且非常令人沮丧。请帮忙。

0 个答案:

没有答案