Дозаливка

This commit is contained in:
2022-12-19 22:22:19 +02:00
parent 73d69cb0ae
commit 2f6517f5b3
22083 changed files with 494007 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<?
/*if($_POST['item_id']){
include_once('../../_incl_data/__config.php');
define('GAME',true);
include_once('../../_incl_data/class/__db_connect.php');
$item = mysql_fetch_array(mysql_query("SELECT name FROM items_main WHERE id = '".$_POST['item_id']."' LIMIT 1"));
echo $item['name']." [".$_POST['item_id']."]";
}
if($_POST['getListItems'] == true){
include_once('../../_incl_data/__config.php');
define('GAME',true);
include_once('../../_incl_data/class/__db_connect.php');
$items = mysql_query("SELECT id, info FROM items_main WHERE `info` LIKE 'Ïðåäìåò äëÿ áîòîâ%'");
while($item = mysql_fetch_array($items)){
$item['info'] = explode(':',$item['info']);
echo $item['info'][1]." [".$item['id']."]";
}
}*/
?>