Files
crm.e5.pl/modules/EcmKpkw/getcash.php

14 lines
242 B
PHP
Raw Permalink Normal View History

2024-04-27 09:23:34 +02: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;
?>