將JavaScript 變數傳遞給PHP:綜合指南
開發Web 應用程式時,通常需要將JavaScript 中的資料儲存在用於分析或將來檢索的資料庫。在這種情況下,我們從 Google 地圖獲得了一個 JavaScript 變數 lugar,我們希望將其保存在 MySQL 資料庫中。
為了有效地將這個 JavaScript 變數傳遞給 PHP,我們可以利用 jQuery 的 AJAX 功能。首先建立一個名為「save.in.my.database.php」的單獨腳本來處理資料庫互動。
現在,讓我們設定jQuery AJAX 函數:
<code class="javascript"><script> $.ajax({ url: "save.in.my.database.php", type: "post", dataType: "json", data: { lugar: results[0].geometry.location }, success: function(data) { alert('saved'); }, error: function() { alert('error'); } }); </script></code>
在AJAX 函數中:
最後,在PHP 腳本「save.in.my.database.php」:
<code class="php"><?php $lugar = $_POST['lugar']; // Save $lugar in your database here ?></code>
透過使用此方法,您可以將JavaScript 中的資料無縫整合到PHP 中後端,可讓您有效地將必要的資訊儲存在資料庫中。
以上是如何將 JavaScript 變數傳遞給 PHP的詳細內容。更多資訊請關注PHP中文網其他相關文章!