Files
crm.twinpol.com/modules/EcmKpkw/getcash.php

14 lines
242 B
PHP
Raw Normal View History

2025-05-12 15:44:39 +00:00
<?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;
?>