first commit

This commit is contained in:
2025-04-27 10:56:38 +08:00
commit 4c3e17d851
796 changed files with 115572 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
ini_set("error_reporting","E_ALL & ~E_NOTICE");
$key = "7eed756ca37ca057370ea9bb208d25fa";//通讯密钥
$host = "../createOrder";
$sign = md5($_GET['payId'].$_GET['param'].$_GET['type'].$_GET['price'].$key);
$p = "payId=".$_GET['payId'].'&param='.$_GET['param'].'&type='.$_GET['type']."&price=".$_GET['price'].'&sign='.$sign.'&isHtml=1';
echo "<script>window.location.href = '".$host."?".$p."'</script>";