我在這裏有一些小問題。在提交時插入MySQL數據
數據會插入數據庫,但當我打開頁面時會插入數據。
我想要在按下提交按鈕時插入數據,而不是在頁面加載/刷新時插入數據。希望可以有人幫幫我!
下面是代碼:
<html>
<head>
</head>
<body>
<h2>Arbeidsliste</h2>
<div id ="insert">
<form action="index.php" method="post">
<p>
<label for="dato">Dato: </label>
<input type="date" name="dato" class="field">
</p>
<p>
<label for="start">Start: </label>
<input type="time" name="start" class="field">
</p>
<p>
<label for="slutt">Slutt: </label>
<input type="time" name="slutt" class="field">
</p>
<p>
<label for="pause">Pause: </label>
<input type="number" name="pause" class="field">
</p>
<p>
<input type="submit">
</p>
</form>
</div>
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "timer";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "INSERT INTO meny (dato, start, slutt, pause)
VALUES ('2016-04-01', '12:00', '20:00', '30')";
if ($conn->query($sql) === TRUE) {
echo "New record created successfully";
} else {
echo "Error: " . $sql . "<br>" . $conn->error;
}
$conn->close();
?>
</body>
</html>
基本'if(){...}'。並且我們無法確定要綁定的內容。 –
請向我們展示與此相關的HTML。 –
我會說弗雷德 - 我的答案是你想要的。 –