结果不会显示

时间:2016-05-11 15:05:59

标签: php

这是我的html文件

<html>
<head>
<style>
label{display:inline-block;width:100px;margin-bottom:10px;}
</style>


<title>Add Employee</title>
</head>
<body>

<form method="post" action="">
<label>First Name</label>
<input type="text" name="first_name"/>
<br />
<label>Last Name</label>
<input type="text" name="last_name" />
<br />
<label>Department</label>
<input type="text" name="department" />
<br />
<label>Email</label>
<input type="text" name="email" />

<br />
<input type="submit" value="Add Employee">
</form>



</body>
</html>

这是我的php文件

<?php

echo $_POST['first_name'];
echo '<br />';
echo $_POST['email'];

?>

每次输入姓名和电子邮件后,问题都出现了。这2个错误将显示:

注意:未定义的索引:第4行的C:\ xampp \ htdocs \ Lab6 \ process.php中的first_name
注意:未定义的索引:第6行的C:\ xampp \ htdocs \ Lab6 \ process.php中的电子邮件

任何人都可以帮我确定实际上是什么问题吗?谢谢。顺便说一句,我使用xampp

0 个答案:

没有答案