我的 $_POST 正在接收用户名和密码,但没有收到我拥有的任何其他条款。这些名称都与我的表中的名称相匹配,我一定遗漏了一些东西。首先是我的带有表单数据的 HTML 文件,其次是应该将值存储在我的 user_info 表中的 php 文件。
<HTML>
<link rel="stylesheet" href="testcss.css" type="text/css">
<body>
<div id="header">
<h1>Register</h1>
</div>
<div id="formtext">
<form name="register" action="register.php" method="post">
First Name: <input type:"text" name"firstName"><br>
Last Name: <input type"text" name"lastName"><br>
Email: <input type:"text" name"email"><br>
Desired Username: <input type="text" name="username"><br>
Password: <input type="text" name="password"><br>
<input type="submit" name="Submit">
</div>
</body>
</HTML>
这是php文件...
<?php
mysql_connect('localhost', 'root', 'root') or die(mysql_error());
mysql_select_db("myDatabase") or die(mysql_error());
$firstName = $_POST["firstName"];
$lastName = $_POST["lastName"];
$email = $_POST["email"];
$username = $_POST["username"];
$password = $_POST["password"];
mysql_query("INSERT INTO user_info(firstName, lastName, email, username, password) VALUES ('$firstName', '$lastName', '$email', '$username', '$password')");
header( 'Location: loaclhost:8888/userHome.html' ) ;
?>