You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
526 B

4 years ago
<?php
include './functions.php';
4 years ago
$first = $_GET['first'];
$last = $_GET['last'];
4 years ago
4 years ago
4 years ago
if(!isset($first) || !isset($last)) die();
$cnn = db__connect();
4 years ago
if(!db__rowNum($cnn, "account", "id", $first) || !db__rowNum($cnn, "account", "id", $last)) die();
4 years ago
db__pushData($cnn, "account", array(
"state" => '1'
), array(
"id" => $first
));
db__pushData($cnn, "account", array(
"state" => '1'
), array(
"id" => $last
));
echo '<script>
alert("收款确认成功");
window.location.href="https://cp-acc.yimian.xyz/";
4 years ago
</script>';