initial commit

This commit is contained in:
i2p
2026-08-27 10:50:54 -06:00
commit 97a5f0aa12
3172 changed files with 570428 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
$getIdBotWindows = htmlspecialchars($_REQUEST["id"], ENT_QUOTES);
include 'config.php';
$connection2 = new PDO('mysql:host='.SERVER.';dbname='.DB, USER, PASSWORD);
$connection2->exec('SET NAMES utf8');
$statement2 = $connection2->prepare("SELECT * FROM idbotwindows");
$statement2->execute([$getIdBotWindows]);
$isIdBotWin = false;
foreach($statement2 as $row){
if (preg_match("/$getIdBotWindows/",$row['idbot'])){
$isIdBotWin=true;
}
}
if($isIdBotWin){
echo "exist";
}else{
echo "no";
}
?>