gpt4 book ai didi

javascript - 我想继续存储和显示从 mysql 获得的结果

转载 作者:行者123 更新时间:2023-11-29 21:24:43 25 4
gpt4 key购买 nike

我不是 php 专家,只是一个新手,所以不知道该怎么做。我想做的是继续保存我从文本框 This is the textbox and shirt,color and price is the result I am getting from the table 得到的结果。并继续在我的页面上显示它。附有文本框的图片。我想继续存储从表中获得的新结果,并继续显示旧结果。我希望我想做什么很清楚。我的代码有三个文件,主文件 products.php 有以下代码

<!DOCTYPE html>
<html>
<head>
<title>Products</title>
<p> Scan the Barcode of the Product </p>
<link href="mystyle.css" rel="stylesheet">
</head>
<body>

<input type="text" name="enter" required id="item" style="text-align:centre" placeholder=" Barcode ID" autofocus />

<div id="item-data"></div>

<script src="js/jquery-2.2.0.min.js"></script> <!--jquery link-->
<script src="js/global.js"></script> <!--linking event file-->

</body>
</html>

而 global.js 的代码是

$(function(){

//press enter on text area..

$('#item').keypress(function (event) {
var key = event.which;
if(key == 13) // the enter key code
{

var item = $('input#item').val(); // retreiving the value from the item
if ($.trim(item) != ''){ //send this to php file but if its empty or spaces(trim) are there dont send it//
$.post('ajax/name.php',{id:item}, function(data){ //using post method sending to the father(name.php), sending the data through the file item
$('div#item-data').append(""+data+"</br>"); // grabing the data and displaying it

});

}

$('#item').val('');
}
});

});

第三个文件 my name.php 文件包含以下代码

<?php

require '../db/connect.php';

$id= $_POST['id']; // your post variable
$sql = "SELECT BarcodeID, shirts, price FROM clothes WHERE BarcodeID=".mysqli_real_escape_string($con,$id);

$result = mysqli_query($con,$sql) or die(mysqli_error($con));

if(mysqli_num_rows($result)>0)
{
while($row = $result->fetch_assoc())
{
echo " " . $row["BarcodeID"]. " shirt color: " . $row["shirts"]. " price: " . $row["price"];
}
}
else
{
echo "ID not found, Please Scan again";
}
mysqli_close($con);

?>

最佳答案

这个问题已通过使用 javascript 中的附加函数解决。 checkin global.js 文件。

关于javascript - 我想继续存储和显示从 mysql 获得的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35562439/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com