no message

This commit is contained in:
2025-10-18 14:46:52 +08:00
commit 7a84025b05
387 changed files with 75711 additions and 0 deletions

33
user/then_products.php Normal file
View File

@@ -0,0 +1,33 @@
<?php
include './sc.php';
$id = $_POST['id'];
$qq = $user.'@qq.com';
if (!file_get_contents('./products/'.$id.'.json')) {
die("未找到商品");
}
$data = @file_get_contents('./products/'.$id.'.json');
$data = json_decode($data, true);
if ($data['hidden'] == 1) {
die("未找到商品");
}
if ($data['have'] <= 0) {
die("商品已售罄");
}
if ($bi < $data['bi'] or $Star < $data['star']) {
die('余额不足...');
}
echo '跳转中……<meta http-equiv="refresh" content="1;url=./ready_products.fx?id='.$id.'">';
?>