Здравствуйте помогите разобраться с Freekassa не правильная подпись выдает при отправке запроса
получается в подпись $sign = md5($merchant_id.':'.$order_amount.':'.$secret_word.':'.$currency.':'.$order_id);
не правильно предает $order_amount если вместо этого поставить значение 50 то все работает вот как заставить чтобы правльно форма передавала сумму не могу понять
PHP:
if($cfg["kassa"]["enable"] == "FreeKassa"){
if ( !$cfg["freekassa"]["enable"] ) {
$tpl->SetResult( "content", $lang["don_err_freekassa"]);
//$controller->showMSG( $lang["don_err_freekassa"] );
} else {
$merchant_id = $cfg["freekassa"]["merchant"];
$secret_word = $cfg["freekassa"]["secret"];
$order_id = rand(999, 999999);
$order_amount = $_GET["oa"];
$currency = 'RUB';
//5d05376b38f35157e51c6ce8e66a71b5
//$sign = md5($merchant_id.':'.$order_amount.':'.$secret_word.':'.$order_id);
$sign = md5($merchant_id.':'.$order_amount.':'.$secret_word.':'.$currency.':'.$order_id);
$htmlform = '
<body onload="srokChange()">
<form method="get" action="https://pay.freekassa.ru/">
<input type="hidden" name="m" value="'.$merchant_id.'">
<input type="hidden" name="o" value="'.$order_id.'">
<input type="hidden" name="currency" value="'.$currency.'">
<input type="hidden" name="s" value="'.$sign.'">
<input type="hidden" name="i" value="1">
<input type="hidden" name="lang" value="ru">
<input type="hidden" name="us_time" id="us_time" value="0">
<table class="table table-striped table-bordered table-hover">
<tbody><tr>
<th>
<span class="glyphicon glyphicon-cog" aria-hidden="true"></span> <font size="3">STEAM_ID</font>
<br>
<small class="text-muted"><span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span> <span style="color:#d81717">ВВОДИТЕ STEAM_ID ВНИМАТЕЛЬНО!</span> <p><b>Пример:</b> <span style="color:#006400">STEAM_0:1:12345678</span></p> </small>
</th>
<td><p><input type="text" name="us_login" class="input-sm" placeholder="STEAM_ID" required></p></td>
<tr>
<th><span class=" glyphicon glyphicon-envelope" aria-hidden="true"></span> <font size="3">E-Mail</font><br>
<small class="text-muted"><span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span> Внимательно введите адрес вашей электронной почты, на него придет вся информация об оплате</small>
</th>
<td><input type="email" name="us_email" class="input-sm" placeholder="example@mail.ru" required></td>
</tr>
<th><span class="glyphicon glyphicon-hdd" aria-hidden="true"></span> <font size="3">Сервер</font>
</br>
<small class="text-muted"><span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span> Выберите сервер, на котором хотите получить VIP</small>
</th>
<td>
<label><input type="checkbox" name="us_server1" id="server1" onclick="srokChange()"><img style="margin-right: 5px;margin-left: 5px;" src="./templates/default/img/css.gif"><span style="font-size:15px">[CS:S] УБИЙСТВЕННЫЙ ® DUST2</span></label>
<br>
<label><input type="checkbox" name="us_server2" id="server2" onclick="srokChange()"><img style="margin-right: 5px;margin-left: 5px;" src="./templates/default/img/csgo.gif"><span style="font-size:15px">[CS:GO] Лихие-90е [de_Dust2]</span></label>
</td>
</tr>
<tr>
<th><span class="glyphicon glyphicon-time" aria-hidden="true"></span> <font size="3">Срок действия VIP</font></br>
<small class="text-greeen"><span class="glyphicon glyphicon-thumbs-up" aria-hidden="true"></span> Больше срок - больше выгода!</small></th>
<td>
<select class="input-sm" name="oa" id="srok" OnChange="srokChange()">
<option value="1" data-expires="1" data-cost1="50" data-cost2="60">7 дней</option>
<option value="2" data-expires="2" data-cost1="95" data-cost2="115">14 дней (-5%)</option>
<option value="3" data-expires="3" data-cost1="135" data-cost2="160">21 день (-10%)</option>
<option value="4" data-expires="4" data-cost1="175" data-cost2="200">месяц (-15%)</option>
<option value="5" data-expires="5" data-cost1="320" data-cost2="380">2 месяца (-20%)</option>
<option value="6" data-expires="6" data-cost1="450" data-cost2="540">3 месяца (-25%)</option>
<option value="7" data-expires="7" data-cost1="840" data-cost2="1000">6 месяцев (-30%)</option>
<option value="8" data-expires="8" data-cost1="1550" data-cost2="1850">1 год (-35%)</option>
</select>
</td>
</tr>
<p><input type="hidden" name="us_vip" value="VIP"></p>
<tr>
<th><span class="glyphicon glyphicon-shopping-cart" aria-hidden="true"></span> <font size="3">К оплате</font></th>
<td><input id="cost" class="input-sm" value="" disabled></td>
</tr>
</tr></tbody></table>
<div align="center"><input type="submit" class="btn btn-lg btn-primary" value="Далее"></div>
</form>
</body>
';
не правильно предает $order_amount если вместо этого поставить значение 50 то все работает вот как заставить чтобы правльно форма передавала сумму не могу понять