gpt4 book ai didi

php - 调用php文件并请求某些变量/信息然后显示在div中

转载 作者:行者123 更新时间:2023-11-30 22:30:41 25 4
gpt4 key购买 nike

总体目标是通过 php 文件将信息从 mysql 服务器中继到正在查看的网页。更具体地说,我想针对 php 文件的某些方面,或数据库中的某些表,并将它们显示在网页上的不同 div 中。鉴于我有限的经验,我不确定如何最好地做到这一点,但我想流程会是这样的......

(对于有限的代码细节,我深表歉意,但我尝试的所有方法似乎都不是正确的方法,所以我会保持宽泛,以便接受建议。)

调用 php 文件并请求某些变量,例如:

 $(document).ready(function(){
//call sqlrelay.php
//ask for some variable ($row) or some section of the code (within the if statement)
//display it in div ('#collapseOne')
};

用php文件(sqlrelay.php)监听如:

<?php
//if request received from client side do this:
include ("connection.php");
$sendtable = "SELECT timein FROM timestamp1 ORDER BY id DESC LIMIT 1";
$result=mysqli_query($link, $sendtable);
$row = mysqli_fetch_array($result);
$table = $row['timein'];
echo $table;
<?

最佳答案

查看 API:http://api.jquery.com/jquery.ajax/

或使用我的代码。

$(document).ready(function() {
$.ajax({
method: "POST",
url: "sqlrelay.php",
data: {
row: "your query"
},
success: function(data) {
$('#collapseOne').html(data);
}
});
});

你的 PHP 看起来像这样来捕获行请求

<?php

$row = $_POST['row'];

echo $row;

关于php - 调用php文件并请求某些变量/信息然后显示在div中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33964372/

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