Bitcoin Forum

Economy => Services => Topic started by: ezimedia on June 01, 2014, 08:48:03 PM



Title: Clone this script for $20
Post by: ezimedia on June 01, 2014, 08:48:03 PM
http://codecanyon.net/item/bitcoin-tools/5220131

Thanks everyone... I hade a kind member that sent me a script that is doing this for me for free.. so I am happy now..

If I can think of anything else I can offer money for I'll post it...

Sorry if I wasted anyones time..


Title: Re: Clone this script for $20
Post by: mnporter2001 on June 01, 2014, 09:01:07 PM
? you want to pay $20 for something you can get direct from them for $3 ?


Title: Re: Clone this script for $20
Post by: roslinpl on June 01, 2014, 09:05:55 PM
http://codecanyon.net/item/bitcoin-tools/5220131

it is only css and a bit of php... clone ot you get $20 -50  show it to me with extrxs


indeed this is silly offer as you can buy it for $3.

So ... willing to use an escrow? :)

and hmm $20 -50
so 20 or 50 ?

send it to an escrow I will buy $3 script and send it to you.




Title: Re: Clone this script for $20
Post by: BitCoinDream on June 01, 2014, 09:26:24 PM
http://codecanyon.net/item/bitcoin-tools/5220131

it is only css and a bit of php... clone ot you get $20 -50  show it to me with extrxs


indeed this is silly offer as you can buy it for $3.

So ... willing to use an escrow? :)

and hmm $20 -50
so 20 or 50 ?

send it to an escrow I will buy $3 script and send it to you.




It seems that the license cost is 3 USD/user, not the script. He is asking for the script. That means he can use it for unlimited users and even resell.


Title: Re: Clone this script for $20
Post by: W-M on June 02, 2014, 07:34:43 AM
Hello Ezimedia.

Sure, I can make this script for you, and make it even better. The current script refreshes the page each time something happens. But using AJAX to talk to the server that's not necessary.

I would be willing to make this for $35 in BTC. You won't get a better deal than that.

Have a nice day,

~W-M


Title: Re: Clone this script for $20
Post by: Wolf Rainer on June 02, 2014, 07:57:47 AM
Here you have for free...

<?php

function get_content($url)
{
$ch = curl_init();

curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_HEADER, 0);

ob_start();

curl_exec ($ch);
curl_close ($ch);
$string = ob_get_contents();

ob_end_clean();

return $string;  
}

$btcprice = get_content (' https://blockchain.info/es/q/24hrprice ');
{

$usd= "$_POST['input']";
$none= "0";
$result= ($usd / $btcprice);

}

 if ($usd>$none)
     {
print "<p> $ " . $usd . " = " . $result . " BTC </p>\n";
    }  

?>

Thatīs for "Calculate USD -> BTC", for "Calculate BTC -> USD" just change the variables.


Title: Re: Clone this script for $20
Post by: Sarpita on June 02, 2014, 08:28:34 AM
.


Title: Re: Clone this script for $20
Post by: lewisg on June 02, 2014, 08:49:56 AM
Wolf Rainer  Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING) in /home4/public_html/1.php on line 24


Title: Re: Clone this script for $20
Post by: Wolf Rainer on June 02, 2014, 08:54:11 AM
Wolf Rainer  Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING) in /home4/public_html/1.php on line 24

You have to make the html part with the div and the input like this:

</div>
<div class="well">
<form class="form-inline" action="index.php" method="post">
<center><h3>Calculate BTC -> USD </h3> <input type="text" name="input" pattern="[0-9.]{1,64}">
<input class="btn btn-success" type="submit"></center>
</form>

Also, put }  down the "
$usd= "$_POST['input']";
$none= "0";
$result= ($usd / $btcprice);"

Like this:

{

$usd= "$_POST['input']";
$none= "0";
$result= ($usd / $btcprice);

}


Title: Re: Clone this script for $20
Post by: lewisg on June 02, 2014, 09:00:46 AM
Wolf Rainer ,can you just save [files]everything in a zip file and post the system requirements.


Title: Re: Clone this script for $20
Post by: Wolf Rainer on June 02, 2014, 09:07:46 AM
Wolf Rainer ,can you just save [files]everything in a zip file and post the system requirements.

I canīt do all the job for you guys, im giving you the php code itīs the "hardest", the rest itīs just right click and "see source code" on the page and copy/modify it for the html.

I can send you all the code (php, css and html) in a file ready to use, but i will charge some btc.


Title: Re: Clone this script for $20
Post by: lewisg on June 02, 2014, 09:15:12 AM
sure will pay , once verify ezimedia your Clone script works.


Title: Re: Clone this script for $20
Post by: Wolf Rainer on June 02, 2014, 09:18:46 AM
sure will pay , once verify ezimedia your Clone script works.

I donīt want the $20, thatīs the reason i gived he the php code for FREE! And i donīt want he to get scamed by someone who sold he that easy newbie code for $20 when you can do it by just reading a php manual for 30 minutes.


Title: Re: Clone this script for $20
Post by: lewisg on June 02, 2014, 09:26:06 AM
Thank you so much for giving php code for FREE but i got an error on line 24


Title: Re: Clone this script for $20
Post by: W-M on June 02, 2014, 10:00:02 AM
And i donīt want he to get scamed by someone who sold he that easy newbie code for $20 when you can do it by just reading a php manual for 30 minutes.
Just to make sure: I hope you're not talking about my offer?
I'm almost sure you don't, since that would be ridiculous.
I offered to make a script that does all three things that ezimedia wanted using JavaScript and AJAX instead of needing to manually submitting the form each time. In a similar way how the buy/sell form works on https://bitonic.nl/ (https://bitonic.nl/) .

~W-M


Title: Re: Clone this script for $20
Post by: lewisg on June 02, 2014, 10:53:54 AM
created demo.html but index.php not working

<title>Calculate USD</title>
<html>
<body>

</div>
<div class="well">
<form class="form-inline" action="index.php" method="post">
<center><h3>Calculate BTC -> USD </h3> <input type="text" name="input" pattern="[0-9.]{1,64}">
<input class="btn btn-success" type="submit"></center>
</form>

</body>
</html>


Title: Re: Clone this script for $20
Post by: Sarpita on June 02, 2014, 11:43:54 AM
.


Title: Re: Clone this script for $20
Post by: ahmedjadoon on June 02, 2014, 02:29:58 PM
I don't think you need to pay for something as simple as this. I would suggest you review the pieces of codes above and you are done.


Title: Re: Clone this script for $20
Post by: Wolf Rainer on June 02, 2014, 07:59:22 PM
I don't think you need to pay for something as simple as this. I would suggest you review the pieces of codes above and you are done.

Thatīs what i was saying. Itīs not too hard to open chrome www.google.com and using the code i gived he and seach for variables.


Title: Re: Clone this script for $20
Post by: hamburger on June 03, 2014, 07:08:23 AM
? you want to pay $20 for something you can get direct from them for $3 ?

You need to create an account and the deposit an odd amount of money that normally exceed your purchase price - something like $35. You forfeit the balance if you do not use it within a certain period or you have to buy other crap that you do not want or need.