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

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

Patricia Arquette
Patricia Arquette原創
2024-11-01 12:27:30941瀏覽

How to Insert Data into MySQL with PHP and AJAX (jQuery)?

使用PHP 和AJAX (jQuery) 將資料插入MySQL

許多教程專注於資料庫交互的複雜實現,使其難以適應以滿足特定需求。本文提供了一種使用 PHP 和 AJAX (jQuery) 將資料插入 MySQL 資料庫的簡化方法。

HTML 表單由文字方塊、標籤和提交按鈕組成。

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

jQuery 腳本處理 AJAX 提交,無需刷新頁面。

<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 has been posted successfully');
            }
        }
    });

    return false;
}</code>

PHP 腳本 process.php 連接到資料庫並執行插入查詢。它轉義用戶輸入以防止 SQL 注入。

<code class="php">$val = mysql_real_escape_string(post('my_value'));
$sql = sprintf("INSERT INTO %s (column_name_goes_here) VALUES '%s';", 'table_name_goes_here', $val);
$result = mysql_query($sql);</code>

查詢結果(成功或錯誤)以 JSON 格式傳回。成功插入後,頁面上會顯示警報訊息。

這種簡化的方法提供了一種使用 PHP 和 AJAX (jQuery) 將資料插入 MySQL 資料庫的簡潔而直接的方法。

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

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