";
echo "";
echo "";
echo "Coin | ";
echo "Market | ";
echo "Price | ";
echo "Message | ";
echo "Deposit | ";
echo "
";
echo "";
$list = dbolist("SELECT coins.id as coinid, markets.id as marketid FROM coins, markets WHERE coins.installed AND
coins.id=markets.coinid AND (markets.deposit_address IS NULL or (message is not null and message!='')) order by markets.id desc");
foreach($list as $item)
{
$coin = getdbo('db_coins', $item['coinid']);
$market = getdbo('db_markets', $item['marketid']);
echo "";
echo "$coin->name | ";
echo "$market->name | ";
echo "$market->price | ";
echo "$market->message | ";
echo "$market->deposit_address | ";
echo "
";
}
echo "
";
echo '
';
echo '
';