当前位置:Gxlcms > PHP教程 > 把数值发送php让php执行在数据库保留

把数值发送php让php执行在数据库保留

时间:2021-07-01 10:21:17 帮助过:4人阅读

把数值发送php 让php执行在数据库保存啊

第一个是未排序的 第二个是排序后获取数值的 怎么能把数值发送给数据库保存啊




















{foreach from=$shop item=i}






















{/foreach}

编号

名 称

种 类

类 别

图 片

简 介

图 示

介 绍

公 司

开 始

结 束

地 址

休 息

网 址

停 止

操 作

排 序

{$i["id"]} {$i["name"]} {$i["varietyid"]} {$i["classifyid"]} {$i["list_pic"]} {$i["introduction"]} {$i["show_pic"]} {$i["product_introduction"]} {$i["company"]} {$i["business_start"]} {$i["business_end"]} {$i["address"]} {$i["rest_flag"]} {$i["web"]} {$i["del_flag"]} 修改 删除 上移 下移 置顶




------解决思路----------------------
你的 alert(r); 时已经得到了指定序列的数组 r
你只需将其传给 php 程序即可,比如
$.post(location.href, {px:r}); //location.href 表示当前页,其他目标你自己定

php 将收到
array(
'px' => array(1,3,5,2,4}
)
这样的数组

再怎么用就是你的事情了

------解决思路----------------------
$('#bn').click(function() {
var r = [];
$('.xh').each(function(i, t) {
r.push($(this).html());
});
alert(r);
});

改为
$('#bn').click(function() {
var r = [];
$('.xh').each(function(i, t) {
r.push($(this).html());
});
$.post(‘server.php', {px:r}); // server.php 表示接受数据的php
});


然后 server.php 中加入
$data = isset($_POST['px'])? $_POST['px'] : array();
print_r($data); // 打印获取的数据

// 执行写入数据库的操作。
?>

这个需要你自己先搭建php + mysql 运行环境。以及需要了解php,mysql的语法。
搭建环境可以安装wamp2来实现。

人气教程排行