我在我的網站上有一個表單提交數據到我的(mysql)數據庫。這是通過Mysqli完成的。提交表單後,我收到以下消息:MySQLi插入到插入0?
「inputoftextboxhere」已添加到數據庫!
但是,當我看到在我的數據庫只有一個insert.php
<?php
//config bestand ophalen.
require_once 'config.php';
if(isset($_POST['submit']))
{
$email = $mysqli->real_escape_string($_POST['email']);
$sql = "INSERT INTO maillist (id, email) VALUES ('', '$email')";
if ($mysqli->query($sql))
{
echo "<center><div class='alert alert-success' role='alert'>".$email." is succesvol toegevoegd aan de database!</div></center>";
}
else
{
echo "Error: " . $sql . "<br>" . $mysqli->error;
}
$mysqli->close();
}
?>
值的index.php數據庫的
<form action="insert.php" method="post" accept-charset="utf-8" class="form" name="submit">
<legend>Email </legend>
<input type="text" name="email" value="" class="form-control input-lg" placeholder="E-mail" /><br />
<button class="btn btn-lg btn-primary btn-block signup-btn" name="submit" type="submit">Voeg nummer toe</button>
</form>
截圖: https://gyazo.com/9ec48d3ce4ec6643d8fbcb2f3db42052
顯示config.php – Mihai
只有幾行數據庫詳細信息。不要以爲你需要他們。 ;) – Mand
此外,表定義和檢查觸發器。有時人們連接到MySQL,這就是爲什麼我問。 – Mihai