Bitcoin Forum

Economy => Services => Topic started by: Coinbuddy on April 14, 2015, 04:46:22 AM



Title: Simple PHP task [Bounty: 0.01 BTC]
Post by: Coinbuddy on April 14, 2015, 04:46:22 AM
I am looking for PHP developer,who can do a simple programming.
PM me for more info
I will pay 0.01 BTC
Hint: Fetch data from other websites two or more

Actual Work:

 I want something like this
A search box in which we type a product name and it prices from different websites will be shown.

Websites will include Banggood.com,tmart.com,tinydeal.com,dx.com,gearbest.com

It will show the price of that product from these above sites


Title: Re: Anyone who do PHP/HTML for free?
Post by: onemorexmr on April 14, 2015, 04:49:03 AM
If you can do HTML/PHP for free!  :P
Then PM me
Its not much work! just fetching data from other website


come one: http://codular.com/curl-with-php
you can do it!

begging for coders...lol ;)


Title: Re: Anyone who do PHP/HTML for free?
Post by: Coinbuddy on April 14, 2015, 04:50:20 AM
If you can do HTML/PHP for free!  :P
Then PM me
Its not much work! just fetching data from other website


come one: http://codular.com/curl-with-php
you can do it!

begging for coders...lol ;)

i can't even write a single line
I can do just frontend


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: Bit_Happy on April 14, 2015, 02:04:13 PM
You might find someone, since a few years ago I would have done it just to practice basic data retrieval, but these days I don't have enough spare time, good luck.


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: Mi5h0 on April 14, 2015, 05:32:10 PM
So, if I understand correctly, you are looking for php developer and planning to pay him $2? WTF?
You have a very low respect for other people's competence or you think that the task is so easy that it doesn't worth more than that.
I think the best solution would be to try to do it yourself and just ask someone to help you when you encounter a problem you do not know to solve.
I am sure that there are people on this forum who are willing to help for free. $2 fee is simply degrading ...


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: Coinbuddy on April 14, 2015, 05:41:32 PM
So, if I understand correctly, you are looking for php developer and planning to pay him $2? WTF?
You have a very low respect for other people's competence or you think that the task is so easy that it doesn't worth more than that.
I think the best solution would be to try to do it yourself and just ask someone to help you when you encounter a problem you do not know I have to solve.
I am sure that there are people on this forum who are willing to help for free. $2 fee is simply degrading ...

0.01 BTC is just a tip :D


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: Mi5h0 on April 14, 2015, 06:20:51 PM

0.01 BTC is just a tip :D
All right then ...

Here you go:
Code:
<?php
$somepage 
file_get_contents('http://www.google.com/');
echo 
$somepage;
?>

Or if you prefer curl method:
Code:
<?php
$url 
"http://www.google.com/";
$ch curl_init($url);
$somepage curl_exec($ch);
curl_close($ch);
?>

BTW, $2 is not even a beer where I live ;)


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: NicosKaralis on April 14, 2015, 06:25:56 PM
I am looking for PHP developer,who can do a simple programming.
PM me for more info
I will pay 0.01 BTC
Hint: Fetch data from other websites two or more

Actual Work:

 I want something like this
A search box in which we type a product name and it prices from different websites will be shown.

Websites will include Banggood.com,tmart.com,tinydeal.com,dx.com,gearbest.com

It will show the price of that product from these above sites

First, this page you need is not that simple to make in pure php
Second, to create a page like this you'll need some php, html, javascript, ajax and another set of skill that you probably don't have
Third, for that price you can't buy the explanation I gave to you

If you want this page and are willing to negotiate a price, we can make a deal
Don't worry, nothing expensive, but not $2

On the bright side i can even offer you some free hosting (I know you don't have one yet, if you had we wouldn't having this conversation)

If you are interested just PM me and we can talk


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: Coinbuddy on April 15, 2015, 03:52:10 AM

0.01 BTC is just a tip :D
All right then ...

Here you go:
Code:
<?php
$somepage 
file_get_contents('http://www.google.com/');
echo 
$somepage;
?>

Or if you prefer curl method:
Code:
<?php
$url 
"http://www.google.com/";
$ch curl_init($url);
$somepage curl_exec($ch);
curl_close($ch);
?>

BTW, $2 is not even a beer where I live ;)

Its not that what i looking for!


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: Mi5h0 on April 15, 2015, 06:48:53 AM
Its not that what i looking for!


In fact, unless you have an API access to these pages, it is exactly what you're looking for.

Hint: Fetch data from other websites two or more


The problem in your case is that you do not know how to implement that...  ;)


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: Mitchell on April 15, 2015, 06:53:47 AM
I could do that, but not for 0.01BTC. I would ask for at least 6BTC (and that's being dirt cheap). This is a lot more complex than you are imagining it to be.


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: Light on April 15, 2015, 06:59:42 AM
Its not that what i looking for!

If you can't find what you're looking for through a google search - you're not going to have much luck at a longer script without paying a decent amount. Website scraping isn't as easy as you think it is - nor is storing and retrieving the results in a timely manner.


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: Mi5h0 on April 15, 2015, 07:05:13 AM
I could do that, but not for 0.01BTC. I would ask for at least 6BTC (and that's being dirt cheap). This is a lot more complex than you are imagining it to be.

Yes, that would be a reasonable offer, but only for backend coding without frontend design.

OP does not seem to realize how much work and time was needed for the development of sites like pricegrabber.com etc.


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: Vortex20000 on April 15, 2015, 07:11:33 AM
I'll work this out for BTC2.5, just got to explode and substr.


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: bitspill on April 15, 2015, 07:16:47 AM
just got to explode and substr.

That would be a terrible way to parse html.

It would be much better using an html library (http://simplehtmldom.sourceforge.net/) or regex (http://blog.codinghorror.com/parsing-html-the-cthulhu-way/)


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: MonkeyCoin11 on April 15, 2015, 07:47:21 AM
That's a bit weird because you say it's simple and then when someone say to you to do it yourself you said "Oh no i can't".
You have really no respect for programmers and don't even know what he must do to achieve your goal, you pay a beer for it that's aweful.
Try to BTC0.5 for it and you will get some people for it.


Title: Re: Anyone who do PHP/HTML for free?
Post by: Mi5h0 on April 15, 2015, 10:05:22 AM
The guy is funny! In the first post writes:

Its not much work! just fetching data from other website


And then updated with:

I want something like this
A search box in which we type a product name and it prices from different websites will be shown.

Websites will include Banggood.com,tmart.com,tinydeal.com,dx.com,gearbest.com

It will show the price of that product from these above sites


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: Vortex20000 on April 15, 2015, 10:42:39 AM
just got to explode and substr.

That would be a terrible way to parse html.

It would be much better using an html library (http://simplehtmldom.sourceforge.net/) or regex (http://blog.codinghorror.com/parsing-html-the-cthulhu-way/)
True, true, extremely inefficient, but less work for me. ::)


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: cshelswell on April 15, 2015, 11:35:55 AM
I think if anyone does this for 0.01btc and does it successfully I wouldn't worry how they did it, you get what you pay for and for that little you should expect a pretty shite job.

I would also say 6btc is about right but then I charge $100 an hour for my time. Why people under sell their time I'll never know. You do yourself and everybody else no favours


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: cshelswell on April 15, 2015, 11:36:29 AM
Sorry I should add, at $100 an hour I'm cheap!


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: NicosKaralis on April 15, 2015, 12:10:39 PM
I liked the way that people talk about "easy" tasks for programmers but they always forget something important

Like, its a simple page, it just needs the time... and I need to check BTC price... and buy BTC... and launch nuclear missiles... You know, kinda like a facebook page...

Its not that what i looking for!

But seriously... If you want this I can make it for you

I gotta buy the milk for my kids... $2 is just too low, make a better bid and we can do this thing.

To help you find a good price here are some questions, start with $20 and if the answer is yes you do increase or decrease the value accordingly:

1. Do you intent to use it privately or other people will use? (increase)
2. Do you need hosting? Do you have it? (increase)
3. You said php script, but this could be done in javascript much faster. Do you really need in php? (decrease)
4. Do you plan on inserting ads? (increase considerably)
5. Do you need it very fast? (increase considerably)

If you don't know how to answer that questions send me a PM and i'll help you


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: r3wt on April 15, 2015, 12:22:43 PM
2 dollars buys you sarcasm

Code:
echo json_encode(
['price'=>'$'.number_format(rand(5,999).rand(0,99),2),'message'=>'this was from another website'],
JSON_HEX_QUOT | JSON_HEX_TAG
);


Title: Re: Simple PHP task [Bounty: 0.01 BTC]
Post by: SparkedDev on April 16, 2015, 06:16:44 AM
Yeah i wouldn't even make a simple contact section for that much.

I have a lot of experience with this method normally people who want to pull anime sources from other sites.

You could build a script that will pull certain pages using javascript and php but not at the price your asking.