我添加了动作值 注册文件
<body>
<div id="registration">
<h2><b><i>Electronic Montessori Learning</i><b></h2>
<form id="RegisterUserForm" action="connect.php" method="post">
<fieldset>
<p>
<label for="name">Name</label>
<input id="name" name="name" type="text" class="text" value="" />
</p>
<p>
<label for="password">Password</label>
<input id="password" name="password" class="text" type="password" />
</p>
<p>
<button id="registerNew" name="registerNew" type="submit">Register</button>
</p>
</fieldset>
</form>
</div>
<body>
我还没有发布所有registration.html代码,因为它工作正常
connect.php
<?php
$db=mysql_connect("localhost", "root", "") or die(mysql_error());
echo "Connected to MySQL<br />";
mysql_select_db("users") or die(mysql_error());
echo "Connected to Database";
$name ='';
$password ='';
if(isset($_POST['registerNew'])){
// Storing form values into PHP variables
$name = $_POST['name']; // Since method=”post” in the form
$password = $_POST['password'];
}
mysql_query("INSERT INTO user_eml(Name, Password) VALUES('$name', '$password' ) ")
or die(mysql_error());
echo "Data Inserted!";
echo 'Thank you for submitting your details!';
?>
但仍然没有工作,当我按下注册按钮时,它显示了connect.php的php代码
答案 0 :(得分:6)
您的表单不知道将数据发送到的位置:
<form id="RegisterUserForm" action="" method="post">
应该是
<form id="RegisterUserForm" action="connect.php" method="post">
答案 1 :(得分:1)
如果单击“注册”按钮,页面上会显示php代码,那么很可能它与您的代码无关。请检查您是否直接双击html文件进行测试。 请通过在浏览器中输入localhost页面地址来执行它。
例如:http://localhost/registration.html
现在HTML应该能够执行PHP代码。
-ShazzDecoder
答案 2 :(得分:0)
您必须在表单中添加connect.php
作为action
属性值:
<form id="RegisterUserForm" action="connect.php" method="post">
答案 3 :(得分:0)
在表单中使用action=""
时,不会提交任何内容。您需要告诉它来调用connect.php
答案 4 :(得分:0)
如果您使用与操作相同的页面,则应将action.php中的代码复制到包含表单的页面上,或将 action =“”替换为 action =“connect。 PHP“强>
答案 5 :(得分:0)
如果单击“注册”按钮,则php代码将显示在页面上,则很可能与您的代码无关。请检查您是否直接双击html文件进行测试。请通过在浏览器中输入本地主机页面地址来执行它。
例如:http://localhost/registration.html
现在,HTML应该能够执行PHP代码。 并且包含html和php文件的文件夹应该在XAMPP-> htdocs中。