基本上,我有一个客户表和潜在潜在客户的潜在客户列表,一旦完成,我需要将潜在客户转移给客户,并使用导出按钮将其从原始表中删除。
我已经尝试了一些可能的事情,例如select from CData ......
and insert into leadlist
,但没有奏效
我的leadselect.php:
$(document).on('click', '.export', function(){
var user_id = $(this).attr("id");
if(confirm("Are you sure you want to export this?"))
{
$.ajax({
url:"export.php",
method:"POST",
data:{user_id:user_id},
success:function(data)
我的导出.php:
<<?php
include('db.php');
include("function.php");
insert into leadlist
select * from CData
?
按钮定义为
$sub_array[] = '<button type="button" name="export" id="'.$row["id"].'" class="btn btn-warning btn-xs export">Export</button>';
我的预期结果是将我选择的数据行导出到潜在客户列表并将其删除。
你能告诉我如何处理这个要求吗?