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

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

使用帶有 sql 的 php 的 Ajax 彈出視圖更新數(shù)據(jù)

使用帶有 sql 的 php 的 Ajax 彈出視圖更新數(shù)據(jù)

牧羊人nacy 2022-12-23 15:16:15
所以幾個(gè)小時(shí)以來我一直在努力解決這個(gè)問題。任何幫助將不勝感激 Homepage- index.php連接器.php<?php$connect = mysqli_connect("localhost", "dummy", "123456", "www") or die ('I cannot connect to the database  because: ' . mysql_error())?>插入.php<?php  include 'conn.php'; // MySQL Connectionif(!empty($_POST))  {  $output = '';  $message = '';  $ostatus = mysqli_real_escape_string($connect, $_POST["ostatus"]);  if($_POST["order_oid"] != '')  {  $query = "  UPDATE ordersSET ostatus='$ostatus',   WHERE oid='".$_POST["order_oid"]."'";  $message = 'Data Updated';  }  else  {  $query = "  INSERT INTO orders(ostatus)  VALUES('$ostatus');  ";  $message = 'Added Record Successfully';  }  if(mysqli_query($connect, $query))  {  $output .= '<label class="text-success">' . $message . '</label>';  $select_query = "SELECT * FROM orders ORDER BY id DESC";  $result = mysqli_query($connect, $select_query);  $output .= '  <table class="table table-bordered">  <tr>  <th width="70%">Customer Name</th><th width="70%">Customer Address</th><th width="70%">Customer Mobile</th><th width="70%">Payment Method</th><th width="70%">Order Status</th><th width="15%">Edit</th>  <th width="15%">View</th>  </tr>  ';  while($row = mysqli_fetch_array($result))  {  $output .= '  <tr>  <td><?php echo $row["oname"]; ?></td>  <td><?php echo $row["odeladd"]; ?></td><td><?php echo $row["omobile"]; ?></td><td><?php echo $row["opaymethod"]; ?></td><td><?php echo $row["ostatus"]; ?></td><td><input type="button" name="edit" value="Edit" id="'.$row["oid"] .'" class="btn btn-info btn-xs edit_data" /></td>  <td><input type="button" name="view" value="view" id="' . $row["id"] . '" class="btn btn-info btn-xs view_data" /></td>  </tr>  ';  }  $output .= '</table>';  }  echo $output;  }  ?>有兩個(gè)名為 orders 和 ordersdata 的表,它們都有 oid 作為公共列。兩者都在同一個(gè)數(shù)據(jù)庫(kù)中,稱為 www。當(dāng)我點(diǎn)擊編輯按鈕時(shí),應(yīng)該會(huì)顯示 ajax 彈出窗口,但事實(shí)并非如此?,F(xiàn)在我從編輯中獲取 oid,從視圖中獲取 id。為我已通過 order_oid 的 edit_data 調(diào)用插入頁(yè)面,為我已通過 order_id 的 view_data 調(diào)用插入頁(yè)面。幫助將不勝感激 謝謝。
查看完整描述

1 回答

?
江戶川亂折騰

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

你應(yīng)該打電話


$('#add_data_Modal').modal('show');


像這樣,


$(document).on('click', '.edit_data', function() {

var order_oid = $(this).attr("id");

$('#add_data_Modal').modal('show');


我認(rèn)為, .attr("oid"); (var order_oid) 作為未定義傳遞,您應(yīng)該將其更改為 .attr("id");


查看完整回答
反對(duì) 回復(fù) 2022-12-23
  • 1 回答
  • 0 關(guān)注
  • 100 瀏覽
慕課專欄
更多

添加回答

舉報(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)