http://joriskt18.eighteen.axc.nl/
de value die er uit komt zou ik graag in een textbox stoppen maar hij veranderd steeds dus moet hij mee veranderen
zo ziet het script er atm uit:
de value die er uit komt zou ik graag in een textbox stoppen maar hij veranderd steeds dus moet hij mee veranderen
zo ziet het script er atm uit:
PHP:
<?php
function btce_query($method, array $req = array()) {
static $ch = null;
if (is_null($ch)) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; BTCE PHP client; '.php_uname('s').'; PHP/'.phpversion().')');
}
curl_setopt($ch, CURLOPT_URL, 'https://btc-e.ru/tapi/');
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
// run the query
$res = curl_exec($ch);
if ($res === false) throw new Exception('Could not get reply: '.curl_error($ch));
$dec = json_decode($res, true);
if (!$dec) throw new Exception('Invalid data received, please make sure connection is working and requested API exists');
return $dec;
}
function GetJsonFeed($json_url)
{
$feed = file_get_contents($json_url);
return json_decode($feed, true);
}
// LTC - USD
$LTC_USD = GetJsonFeed("http://btc-e.com/api/2/ltc_usd/ticker");
$LTC_USD_BUY = $LTC_USD["ticker"]["buy"];
echo('<meta http-equiv="refresh" content="5">');
echo "<center><pre>";
echo "BUY</br>";
echo "LTC -> USD :".$LTC_USD_BUY."</br>";
echo "</pre></center>";
?>