我想做一个简单的注册表单,将数据存储在数据库中,但它似乎对我不起作用。
这是我的html代码:
<html>
<body>
<form method="post" name="register" action="register.php">
<table>
<tr>
<td>User Name:</td>
<td><input type="text" name="name"></td>
</tr>
<tr>
<td>User Email:</td>
<td><input type="text" name="email"></td>
</tr>
<tr>
<td>User Role:</td>
<td><input type="text" name="role"></td>
</tr>
<tr>
<td><input type="submit" name="SubmitForm" value="Save"></td>
</tr>
</form>
</body>
</html>
这是我的 PHP 代码:
<?php
// Make a MySQL Connection
$user="root";
$password="my password";
$database="playtime";
$host="localhost";
$table="ttuser";
mysql_connect($host, $user, $password) or die("Connection Failed");
mysql_select_db($database) or die("Connection Failed");
$name = $_POST['name'];
$email = $_POST['email'];
$role = $_POST['role'];
// Insert a row of information into the table "ttuser"
$query = "INSERT INTO ttuser (uemail, uname, urole) VALUES('$email', '$name', '$role')";
if(mysql_query($query)){
echo "inserted";}
else{
echo "fail";}
?>
它可以很好地连接到数据库,但是当我在 html 页面上单击提交时,它会转到 php 但没有显示任何内容。有人可以帮忙吗?