我写了一个脚本,只要点击AJAX
就发布checkbox
个变量。当选择多个checkboxes
时,变量存储在一个数组中,并由pipe
分隔。我需要将每个变量分别传递到我的php
函数中,以便我可以运行单独的查询。
我的JavaScript
$(document).on("change", ".tbl_list", function () {
var tbls = new Array();
$("input:checkbox[name='tbl[]']:checked").each(function () {
tbls.push($(this).val());
});
var tbl = tbls.join('|');
var db = window.sessionStorage.getItem("db");
alert(db);
$.ajax({
type: "POST",
url: "ajax2.php",
data: {
tbl: tbl,
db: db
},
success: function (html) {
console.log(html);
$("#tblField").html(html).show();
}
});
});
选择多个表时的输出
tbl:db|event
我的PHP功能
function tblProperties() {
if (isset ( $_POST ['tbl'] )) {
$tbl = $_POST ['tbl'];
$db = $_POST ['db'];
$link = mysqli_connect ( 'localhost', 'root', '', $db );
$qry = "DESCRIBE $tbl";
$result = mysqli_query ( $link, $qry );
我知道我需要以某种方式存储这些变量,然后执行for each
生成单独的查询,但我不知道该怎么做。
答案 0 :(得分:3)
这样做:
function tblProperties() {
if (isset ( $_POST ['tbl'] )) {
$db = $_POST ['db'];
$tables = explode('|', $_POST ['tbl']); // explode your variable
$link = mysqli_connect ( 'localhost', 'root', '', $db );
foreach($tables as $table) // foreach through it
{
$result = mysqli_query ( $link, "DESCRIBE $table" ); // do your query
while($row = mysqli_fetch_array($result))
{
// your code here
}
}
}
答案 1 :(得分:0)
使用此,
function tblProperties() {
if (isset ( $_POST ['tbl'] )) {
$tbl = $_POST ['tbl'];
$db = $_POST ['db'];
$link = mysqli_connect ( 'localhost', 'root', '', $db );
$tblarr = explode('|', $tbl);
for($i = 0 ; $i < sizeof($tblarr); $i++)
{
$qry = "DESCRIBE $tblarr[$i]";
$result[] = mysqli_query ( $link, $qry );
}