The author is a web developer and a blogger. Visit his blog at Shoutbux
Few years ago I made a script that will get a live currency from a certain site and display the information on my page. After a few hours of looking into my old file, I can not find my script so I made a new one. I remember I use the cURL function but I forgot the website I used to get the data (am I too forgetful these day? hmm)
Without any other choice, I have to use my friend Google for some clues. Throwing different search keys such as “currency converter using PHP”, “live currency feed”, “currency feed”, “pesos to usd conversion using php”, etc., I came across with this forum http://forums.whirlpool.net.au/forum-replies-archive.cfm/783963.html in which the last thread says
Could always use Google.
www.google.com.au/search?q=100+aud+in+usd
Yeah, why not use Google’s own conversion!
So here is the code.
if (function_exists(’curl_init’))
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, ‘http://www.google.com.au/search?hl=en&q=1+usd+in+php&btnG=Search&meta=&aq=f&oq=’);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, ‘Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0?);
$content = curl_exec($ch);
curl_close($ch);
$position1 = strpos($content,”1 U.S. dollar =”);
$cleandata = substr($content,$position1+15,7);
echo $cleandata;
}
else
{
echo “sorry no cURL here”;
}
Let me discuss to you some points
First there is the condition to check whether cURL is available of not. -> if (function_exists(’curl_init’))
The most interesting part here is the url
http://www.google.com.au/search?hl=en&q=1+usd+in+php&btnG=Search&meta=&aq=f&oq=
How did I get that url? What I did was put the query “1 usd in php” which translate to 1 US dollar to philippine peso. Then the result appears

1 usd to php
Now that Google have displayed the result, all we need to do is read the html file using cURL and using some string manipulations you can easily get what you want. In the example above you should get the value 47.499
- Related Videos
- Related Articles
- Ask / Related Q&A




Understanding HP Exam 000-433
By: Aalies Lyndon | 26/11/2009IBM is a international computer knowledge and IT consulting corporation. It is the world’s largest system integrator.
Understanding EX0-101 Certification Exam
By: Aalies Lyndon | 26/11/2009The test Institute for Information Science which is coined as EXIN is an self-governing IT exam provider.
Understanding HP Exam 000-433
By: Aalies Lyndon | 26/11/2009IBM is a international computer knowledge and IT consulting corporation. It is the world’s largest system integrator.
Understanding HP Exam 000-433
By: Aalies Lyndon | 26/11/2009IBM is a international computer knowledge and IT consulting corporation. It is the world’s largest system integrator.
Understanding HP Exam 000-433
By: Aalies Lyndon | 26/11/2009IBM is a international computer knowledge and IT consulting corporation. It is the world’s largest system integrator.
Understanding EX0-101 Certification Exam
By: Aalies Lyndon | 26/11/2009The test Institute for Information Science which is coined as EXIN is an self-governing IT exam provider.
Understanding HP Exam 000-433
By: Aalies Lyndon | 26/11/2009IBM is a international computer knowledge and IT consulting corporation. It is the world’s largest system integrator.
How to Fix Svchost exe
By: Alex | 25/11/2009Svchost.exe is an extremely vital part of Windows operating system. Svchost.exe is an important process which executes dll files and locate their libraries into windows system's memory. If there is something wrong with svchost.exe on your computer then the whole PC probably can not run stable and would be deathly slow.
Eee Top Review
By: Felix Gomez Jr | 17/11/2009 | ComputersThe Eee Top is a revolution in terms of design and price. With just less than a thousand dollar this computer is considered cheap.
First Leg of the Trip
By: Felix Gomez Jr | 17/11/2009 | TravelMactan airport. Sitting here and waiting for boarding flight 5J 564 of Cebu Pacific Air. I choose to be on this flight for 1 reason. This is the cheapest plane and the cheapest tolerable schedule which is 9:45 AM.
Dell mini Inspiron
By: Felix Gomez Jr | 14/11/2009 | HardwareDell mini is one of my favorite notebook because of its specifications and performance.
Impact of Internet connection on coffee shops
By: Felix Gomez Jr | 13/11/2009 | InternetYesterday I came to realize how internet connection as a value added service to a coffee shop have a big impact on getting customers.
Why people walk while talking on the cellphone?
By: Felix Gomez Jr | 10/11/2009 | WritingHave you ever wondered why most people when answering a call from their cellphone walks around while talking? Why is it? I have been wondering this for years.
HP Pavilion Entertainment PC
By: Felix Gomez Jr | 09/11/2009 | HardwareThis is my first time to put a review on a certain product and I think the best product to review is the one I am using. Here is the specifications of my laptop.
How to Setup Your Own Blog with WordPress
By: Felix Gomez Jr | 08/11/2009 | ProgrammingHave you tried to setup wordpress and have met some problems you were not able to solve until now? This article might help.