JavaScript 與其他程式語言不同,由於運作環境不同,無法直接與 MySQL 資料庫通訊。 JavaScript 在客戶端(在 Web 瀏覽器中)運行,而資料庫駐留在伺服器端。為了彌補這一差距,必須使用 PHP、Java、.Net 或 Node.js 等中間伺服器端語言來進行資料庫查詢。
按照以下步驟進行連接JavaScript、PHP 和MySQL:
<code class="html"><script type="text/javascript"> function countClicks1() { // Increment the counter and update the display count1 += 1; document.getElementById("p1").innerHTML = count1; // Send the data to PHP using AJAX $.ajax({ type: "POST", url: "phpfile.php", data: { count: count1, }, success: function (response) { console.log(response); }, }); } </script> <p><a href="javascript:countClicks1();">Count</a></p> <p id="p1">0</p></code>
<code class="php"><?php $count = $_POST['count']; // Connect to the database $mysqli = new mysqli("localhost", "username", "password", "database_name"); // Insert the count into the database $mysqli->query("INSERT INTO table_name (count) VALUES ('$count')"); // Close the database connection $mysqli->close();</code>
以上是JavaScript 如何將資料傳送到 MySQL 資料庫?的詳細內容。更多資訊請關注PHP中文網其他相關文章!