0

当我尝试设置一个将信息发送到 mysql 的 html 表单时,始终显示 php 代码而不是在这里执行是我的代码有人可以解释我哪里出错了花了一周时间在互联网上寻找答案,但仍然我的工作没有任何进展

html表单页面:

<html>
<body>

<form action="insert.php" method="post">
students name: <input type="text" name="studentsname">
students form: <input type="text" name="studentsform">
teachers id: <input type="text" name="teachersid">
<input type="submit">
</form>

</body>
</html>

现在下一位是mysql数据库的代码

<?php
$con=mysqli_connect("localhost","root","","onduty");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}

$sql="INSERT INTO on duty request (studentsname, studentsform, teachersid)
VALUES
('$_POST[studentsname]','$_POST[studentsform]','$_POST[teachersid]')";

if (!mysqli_query($con,$sql))
{
die('Error: ' . mysqli_error($con));
}
echo "1 record added";

mysqli_close($con);
?>

我真的可以使用某人的帮助来向我解释为什么显示 php 代码而不是执行谢谢 daniel

4

1 回答 1

2

如果您的脚本没有运行,并且您在浏览器中看到了 php 代码,则听起来您的 Web 服务器配置不正确。

可能有很多东西;需要更多信息。您正在运行什么 Web 服务器,安装了什么版本的 php,是否正确安装了 php,等等。

于 2013-10-22T23:58:18.867 回答