Files
crm.twinpol.com/modules/EcmKpkw/getcash.php
2025-05-12 15:44:39 +00:00

14 lines
242 B
PHP
Executable File

<?php
$user = $_REQUEST['kasa'];
if (!$user) {echo '-1'; return;}
$dn = $GLOBALS['db']->fetchByAssoc($GLOBALS['db']->query("select currency_id from ecmcashs where id='".$user."';
"));
echo $dn['currency_id']; return;
?>