正如标题所说,我正试图通过html表单将一条记录插入mysql数据库。
这是文件的html表单部分:addstudent.html
/div>
<div id="main">
<h2>Add another student?</h2>
<p>Please fill out the requested fields.</p>
<form action="Insertstudent.php" method="post">
StudentId: <input type="text" name="studentid"><br>
Password: <input type="text" name="password"><br>
Dob: <input type="text" name="dob"><br>
Firstname: <input type="text" name="firstname"><br>
Surname: <input type="text" name="surname"><br>
Address: <input type="text" name="address"><br>
Town: <input type="text" name="town"><br>
County: <input type="text" name="county"><br>
Country: <input type="text" name="country"><br>
Postcode: <input type="text" name="postcode"><br>
<input type="Submit">
以下是insertstudent.php文件的一部分
<?php
// Insert record using this script
session_start();
include("dbconnect.inc");
// If the form has been submitted
if ($_POST[submit]){
// Build an sql statment to insert a new student to the database
$sql="INSERT INTO student values '" . $_SESSION[id] ."' . '$_POST[studentid]'.'$_POST[password]' . '$_POST[dob]' . '$_POST[firstname]' . '$_POST[lastname]' . '$_POST[house]' . '$_POST[county]' . '$_POST[country]' . '$_POST[postcode]')";
$result = mysql_query($sql,$conn);
?>
我遇到的主要问题是插入脚本-很明显我在做一些错误的事情,因为我的数据库没有更新。
提前感谢所有对此回复的人-非常感谢。
最佳答案
用逗号而不是句点分隔要插入的值。例如。:
INSERT INTO table_name
VALUES (value1, value2, value3,...)