第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何將添加的數(shù)據(jù)從 HTML 表保存到 SQL (PHPMYADMIN)

如何將添加的數(shù)據(jù)從 HTML 表保存到 SQL (PHPMYADMIN)

PHP
慕妹3146593 2022-07-09 16:38:21
所以這是我的情況;我正在嘗試保存通過填寫表格添加的表中的數(shù)據(jù),我不知道如何使用 javascript 或 ajax 將其保存到 phpmyadmin 中的數(shù)據(jù)庫(kù)中。一個(gè)示例代碼非常感謝。謝謝!PS:我是一個(gè)初學(xué)者,我只是在網(wǎng)上搜索代碼并嘗試?yán)梦业玫降臇|西。請(qǐng)幫助:D<html><body><div class = "inputfield">    <label>First Name:</label>    <input type="text" id="fname"><br>    <label>Last Name:</label>    <input type="text" id="lname"><br>    <label>Gender:</label>    <select name="gender" id="gender">        <option>Male</option>        <option>Female</option>    </select><br>    <label>HOURS:</label>    <input type="number" min=".5" max="12" step=".5" name="hours" id="hours" placeholder="--.5 to 12--"> <br></div><div class = "tablefield">    <table class="mtable"  id="mtable">        <tr>            <th width="27%">First Name</th>            <th width="27%">Last Name</th>            <th width="15%">Gender</th>            <th width="15%">Hour</th>            <th width="16%">Edit</th>        </tr>            </table>    <table class="sumtable">        <tr><b>            <td class="sum">TOTAL HOURS</td>            <td class="sum1" id="sumtd"></td>        </b></tr>    </table></div><div class="buttons">        <button type = "button" onclick="add1('mtable')">ADD</button>        <button type = "reset" name="reset" class="btnclr">CLEAR</button>        <button type = "button" name="save" onclick="savefunc()">SAVE</button></div><input type = "hidden" name="hid1" id="hid1"><input type = "hidden" name="hid2" id="hid2"><input type = "hidden" name="hid3" id="hid3"><input type = "hidden" name="hid4" id="hid4"><script>var sum = 0;
查看完整描述

1 回答

?
慕運(yùn)維8079593

TA貢獻(xiàn)1876條經(jīng)驗(yàn) 獲得超5個(gè)贊

我已經(jīng)弄清楚了。我只是將它包含在我的循環(huán)語句的底部并添加了一個(gè) save.php 文件。將此用作參考https://www.studentstutorial.com/ajax/insert-data


    

$.ajax({

            url: "save.php",

            type: "POST",

            data: {

                fname: hid1,

                lname: hid2,

                gender: hid3,

                hour: hid4

                },

                cache: false,

                success: function(dataResult){

                    var dataResult = JSON.parse(dataResult);

                    if(dataResult.statusCode==200){

                        alert("Save Successful!");

                    }

                    else if(dataResult.statusCode==201){

                       alert("Error occured !");

                    }

                }

        });


查看完整回答
反對(duì) 回復(fù) 2022-07-09
  • 1 回答
  • 0 關(guān)注
  • 98 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)