Bitcoin Forum
September 24, 2024, 04:09:02 AM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 »
161  Economy / Games and rounds / Re: Help the forum and earn Bitcoins! >>>>Increased the reward to 0.1<<<< on: April 20, 2015, 12:09:40 PM
I reported 3 posts with 100% accuracy but didnt post them here.
162  Other / Archival / Re: [POLL] BTC 110 on: April 20, 2015, 01:14:09 AM
Im Just Curious because I have only recieved to deposits and both payed out

btc110.acoxi.com

go and buy domain + host  , first kid

Spending 10$/Month and pretty much getting no profit from the site then is obviously either gunna make me steal your money or raise the fee so I've decided not to
163  Economy / Investor-based games / Re: BITCHANCE - Check your luck and get up to 100% Profit Instantly - Min: 0.0005 B on: April 20, 2015, 01:12:30 AM
I  don't  really call  people   scams  but  I   believe  this is considering  the  site  is  offline
164  Bitcoin / Project Development / Re: How To Setup Referral Program on: April 19, 2015, 11:36:49 PM
Does anyone know how to setup a referral program for a bitcoin site?

This is no different than an average PHP/JSP/ASP site.
Could you give me a code or something then?
165  Other / Archival / Re: BTC 110 Poll?!?! on: April 19, 2015, 10:03:02 PM

Well if you do not understand what I posted, you will never work it out.

Two different sites same vanity addresses use by these on https://bitcointalk.org/index.php?topic=1031760.0
Think about that one, or do some research yourself.
I am not using one of the addresses from their site. I didn't even use a vanity generated address

No not you, the site belongs to those in this thread.

https://bitcointalk.org/index.php?topic=1031760.0
They both use the same address, take a look at both sites  and payments to address.  
You're saying the site belongs to them??
166  Bitcoin / Project Development / How To Setup Referral Program on: April 19, 2015, 10:00:46 PM
Does anyone know how to setup a referral program for a bitcoin site?
167  Other / Archival / Re: BTC 110 Poll?!?! on: April 19, 2015, 09:36:23 PM

Well if you do not understand what I posted, you will never work it out.

Two different sites same vanity addresses use by these on https://bitcointalk.org/index.php?topic=1031760.0
Think about that one, or do some research yourself.
I am not using one of the addresses from their site. I didn't even use a vanity generated address
168  Economy / Games and rounds / Re: Free guessing game - chance to win 1 BTC on: April 19, 2015, 09:21:35 PM
23.4
169  Other / Archival / Re: BTC 110 Poll?!?! on: April 19, 2015, 09:16:14 PM
What???
170  Other / Archival / [POLL] BTC 110 | Promotion/Giveaway | Free on: April 19, 2015, 07:53:44 PM
Im Just Curious because I have only recieved two deposits and both payed out
So I am willing to give you guys a free promotion to convince you to deposit.
Comment ideas down for reasonable types of giveaways such as a free 0.001 BTC with every deposit plus the 110% after.

btc110.acoxi.com
171  Other / Archival / Re: BTC-CLUB.COM - Get free bitcoins with your workers! Daily rewards. 10% Affiliate on: April 19, 2015, 01:48:17 PM
No problem and I just signed up and I like the concept but I won't deposit any bitcoins right away. But I have a question to get bitcoins everyday do u have to sign in daily or does it just build up automatically
172  Other / Archival / Re: BTC-CLUB.COM - Get free bitcoins with your workers! Daily rewards. 10% Affiliate on: April 19, 2015, 01:41:08 PM
Just saying you entered your url incorrectly
173  Economy / Games and rounds / Re: [Giveway Increased !] - BTC 0.0004/ vote - Just Register & Vote on: April 19, 2015, 02:18:11 AM
I havn't seen the TOS of the site but I don't think you should be allowed to basically purchase votes
174  Bitcoin / Project Development / Re: List of Transactions? on: April 18, 2015, 09:15:34 PM
Is there a possible way to convert this php into html?

No, HTML can not do the same functions as PHP.
You see I don't know how to use php for my site and I don't know which area on my server I have to save it.
175  Bitcoin / Project Development / Re: List of Transactions? on: April 18, 2015, 08:34:24 PM
You can do this with blockchain.info's API and a little PHP.  https://blockchain.info/api/blockchain_api

Code:
https://blockchain.info/address/$bitcoin_address?format=json

Use PHP and change the code below to have $bitcoin_address equal your address that you want to monitor for new transactions.

The below code will work for MOST standard transactions. Save the below code as a PHP file and run it on your server. It's a little buggy since it will also show transactions going out from this address, but it's a start.
Example: http://btcthreads.com/getBalance.php

Code:
<?php

$bitcoin_address "12DR75wMiV9YiBS5KcSLrQCWeK2WR32N4N"//Replace this with your address you want to monitor
$jsonData "https://blockchain.info/address/$bitcoin_address?format=json";
$getTx json_decode(file_get_contents($jsonData), true);
$totRec $getTx["total_received"];
$convert $totRec 0.00000001;

$finBal $getTx["final_balance"];
$finCon $finBal 0.00000001;

//Most recent tx
$sentAmount $getTx["txs"][0]["out"][0]["value"];
$sentAmountBTC $sentAmount 0.00000001;
$sentBy $getTx["txs"][0]["inputs"][0]["prev_out"]["addr"];

//2nd Most recent tx
$sentAmount2 $getTx["txs"][1]["out"][0]["value"];
$sentAmountBTC2 $sentAmount2 0.00000001;
$sentBy2 $getTx["txs"][1]["inputs"][0]["prev_out"]["addr"];

//3rd Most recent tx
$sentAmount3 $getTx["txs"][2]["out"][0]["value"];
$sentAmountBTC3 $sentAmount3 0.00000001;
$sentBy3 $getTx["txs"][2]["inputs"][0]["prev_out"]["addr"];

//4th Most recent tx
$sentAmount4 $getTx["txs"][3]["out"][0]["value"];
$sentAmountBTC4 $sentAmount4 0.00000001;
$sentBy4 $getTx["txs"][3]["inputs"][0]["prev_out"]["addr"];

?>

<html>
<head>
<style>
html {
background-color: #666666;
color: #ffffff;
font-family: "Calibri", arial, sans-serif;
}
h1 {
color: #FF6666;
}

.g_co {
color: #52CC29;
}

.addr {
font-family: Helvetica, sans-serif;
}

#latCon {
background-color: #333333;
border: 2px solid #FF6666;
border-radius: 6px;
max-width: 485px;
}
</style>
</head>
<center>
<h1>MY FUND RAISER</h1>
<h2>SEND DONATIONS TO:</h2>
<h2><?php echo $getTx["address"]; ?></h2>
<h2>So far we have received: <span class="g_co"><?php echo $convert " BTC"?></span></h2>
<br>

<h3>Latest Donations:</h3>
<div id="latCon">
 <span class="g_co"><?php echo $sentAmountBTC?> </span>BTC sent by <span class="addr"><?php echo $sentBy?></span><br>
 <span class="g_co"><?php echo $sentAmountBTC2?> </span>BTC sent by <span class="addr"><?php echo $sentBy2?></span><br>
 <span class="g_co"><?php echo $sentAmountBTC3?> </span>BTC sent by <span class="addr"><?php echo $sentBy3?></span>
 </div>
</html>

Is there a possible way to convert this php into html?
176  Bitcoin / Project Development / Re: List of Transactions? on: April 18, 2015, 07:15:10 PM
You can do this with blockchain.info's API and a little PHP.  https://blockchain.info/api/blockchain_api

Code:
https://blockchain.info/address/$bitcoin_address?format=json

Use PHP and change the code below to have $bitcoin_address equal your address that you want to monitor for new transactions.

The below code will work for MOST standard transactions. Save the below code as a PHP file and run it on your server. It's a little buggy since it will also show transactions going out from this address, but it's a start.
Example: http://btcthreads.com/getBalance.php

Code:
<?php

$bitcoin_address "12DR75wMiV9YiBS5KcSLrQCWeK2WR32N4N"//Replace this with your address you want to monitor
$jsonData "https://blockchain.info/address/$bitcoin_address?format=json";
$getTx json_decode(file_get_contents($jsonData), true);
$totRec $getTx["total_received"];
$convert $totRec 0.00000001;

$finBal $getTx["final_balance"];
$finCon $finBal 0.00000001;

//Most recent tx
$sentAmount $getTx["txs"][0]["out"][0]["value"];
$sentAmountBTC $sentAmount 0.00000001;
$sentBy $getTx["txs"][0]["inputs"][0]["prev_out"]["addr"];

//2nd Most recent tx
$sentAmount2 $getTx["txs"][1]["out"][0]["value"];
$sentAmountBTC2 $sentAmount2 0.00000001;
$sentBy2 $getTx["txs"][1]["inputs"][0]["prev_out"]["addr"];

//3rd Most recent tx
$sentAmount3 $getTx["txs"][2]["out"][0]["value"];
$sentAmountBTC3 $sentAmount3 0.00000001;
$sentBy3 $getTx["txs"][2]["inputs"][0]["prev_out"]["addr"];

//4th Most recent tx
$sentAmount4 $getTx["txs"][3]["out"][0]["value"];
$sentAmountBTC4 $sentAmount4 0.00000001;
$sentBy4 $getTx["txs"][3]["inputs"][0]["prev_out"]["addr"];

?>

<html>
<head>
<style>
html {
background-color: #666666;
color: #ffffff;
font-family: "Calibri", arial, sans-serif;
}
h1 {
color: #FF6666;
}

.g_co {
color: #52CC29;
}

.addr {
font-family: Helvetica, sans-serif;
}

#latCon {
background-color: #333333;
border: 2px solid #FF6666;
border-radius: 6px;
max-width: 485px;
}
</style>
</head>
<center>
<h1>MY FUND RAISER</h1>
<h2>SEND DONATIONS TO:</h2>
<h2><?php echo $getTx["address"]; ?></h2>
<h2>So far we have received: <span class="g_co"><?php echo $convert " BTC"?></span></h2>
<br>

<h3>Latest Donations:</h3>
<div id="latCon">
 <span class="g_co"><?php echo $sentAmountBTC?> </span>BTC sent by <span class="addr"><?php echo $sentBy?></span><br>
 <span class="g_co"><?php echo $sentAmountBTC2?> </span>BTC sent by <span class="addr"><?php echo $sentBy2?></span><br>
 <span class="g_co"><?php echo $sentAmountBTC3?> </span>BTC sent by <span class="addr"><?php echo $sentBy3?></span>
 </div>
</html>

Thx Imma Go Checkitout
177  Bitcoin / Project Development / List of Transactions? on: April 18, 2015, 05:28:59 PM
How can I show a list of transactions of my website automatically?
Like right when someone deposits to a specific address I want it to be shown right beside a list of other transactions saying the sender address, amount, date time.
I'm not really an expert in developing and website designing and coding so if you can help me that would be great!
178  Other / Off-topic / Re: Question on: April 18, 2015, 03:05:35 PM
You want to add a counter to your website or to a thread in this forum?

I think he want to add a counter on is site, That his site will be launch after these Hour, min, second

No I Just want a little html code that will increase by 1 everyday and says above it "Total Day Online:"
179  Other / Archival / Re: BTC 110 | Updated | 1 BTC Rounds | Everyone Gets 110% | Secure | Round 1!! on: April 18, 2015, 12:56:45 AM
I can only see this ending in 2 ways.

Someone gets scammed.

You have every bitcoin in the world.

1. I do not scam

2. How do I end up with every bitcoin in the world if I payout for every btc I recieve. With the site I get 1 BTC for every 100 BTC Invested.
180  Other / Off-topic / Question on: April 17, 2015, 10:07:22 PM
How can I add a counter for how many days my site has been online?
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!