为什么这个简单的代码不起作用?

时间:2015-08-22 03:53:05

标签: php mysqli

为什么这个简单的代码不起作用?无法用?>结束php代码。使用Wampserver 2.5。 db_words中没有记录任何内容。 已经上网几天但没有答案。 这很简单,在words_db

中添加两个单词
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0       
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ORDLISTA</title>
</head>

<body>
<h1>Lägg till ord</h1>

<form action="addword.php" method="post">
Ord: <input type="text" name="ord"><br></br>
Förklaring: <input type="text" name="forklaring"><br></br>

<input type="submit">
</form>

</body>
</html>



MY PHP CODE addword.php

<?php
 $con=mysqli_connect("localhost","root","","words_db");

// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

// Perform queries
mysqli_query($connect,"INSERT INTO ordlista (ord, forklaring)
VALUES ('$_POST[ord]', '$_POST[forklaring]');

mysqli_close($con);

?>

1 个答案:

答案 0 :(得分:0)

您忘了将")放在最后

mysqli_query($con,"INSERT INTO ordlista (ord, forklaring)
VALUES ('".$_POST['ord']."', '".$_POST['forklaring']."')");