首頁  >  文章  >  資料庫  >  如何使用 PHP 和 AJAX (jQuery) 將資料插入 MySQL 資料庫?

如何使用 PHP 和 AJAX (jQuery) 將資料插入 MySQL 資料庫?

Susan Sarandon
Susan Sarandon原創
2024-11-02 16:02:02882瀏覽

How to Insert Data into a MySQL Database using PHP and AJAX (jQuery)?

使用PHP 和AJAX (jQuery) 將數據插入MySQL 數據庫

問題:

您想要使用PHP 和AJAX (jQuery) 將使用者輸入的資料從簡單表單插入到MySQL 資料庫。現有教學令人困惑,很難實現您想要的功能。

解決方案:

利用 jQuery 強大的 AJAX 功能和 PHP 的資料庫連接功能,您可以完成此任務相對容易。

HTML 表單:

<code class="html"><form method="post" action="process.php" onSubmit="return ajaxSubmit(this);">
    <label for="my_value">Value:</label>
    <input type="text" name="my_value" id="my_value">
    <input type="submit" name="form_submit" value="Go">
</form></code>

jQuery 函數:

<code class="javascript">var ajaxSubmit = function(formEl) {
    var url = $(formEl).attr('action');
    var data = $(formEl).serializeArray();

    $.ajax({
        url: url,
        data: data,
        dataType: 'json',
        success: function(rsp) {
            if (rsp.success) {
                alert('Form data submitted successfully');
            }
        }
    });

    return false;
};</code>
.

在此解決方案中,使用者將資料輸入表單並點擊提交按鈕。 jQuery 函數會擷取資料並將 AJAX 請求傳送到 process.php。 process.php 腳本處理資料庫連線、資料驗證和插入查詢。回應以 JSON 物件的形式傳送回客戶端,通知使用者插入操作成功或失敗。
<code class="php"><?php
function post($key) {
    return isset($_POST[$key]) ? $_POST[$key] : false;
}

$cxn = mysql_connect('localhost', 'username', 'password');
if (!$cxn) exit;
mysql_select_db('database_name', $cxn);

$val = mysql_real_escape_string(post('my_value'), $cxn);

$sql = sprintf("INSERT INTO table_name (column_name) VALUES ('%s')", $val);
$result = mysql_query($sql, $cxn);

$resp = new stdClass();
$resp->success = false;
if ($result) {
    $resp->success = true;
}

echo json_encode($resp);
?></code>

以上是如何使用 PHP 和 AJAX (jQuery) 將資料插入 MySQL 資料庫?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn