14 lines
242 B
PHP
14 lines
242 B
PHP
<?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;
|
|
|
|
|
|
?>
|