War Room

Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum

Featured Warrior Special Offer...
"Members Of The *War Room* Discover Secrets To Immediate Success!"
Reply
 
LinkBack Thread Tools
Old 10-16-2009, 05:14 PM   #1
Active Warrior
 
mrnightowl's Avatar
 
Join Date: Oct 2009
Location: Acapulco, Mexico
Posts: 51
Thanks: 3
Thanked 4 Times in 4 Posts
Social Networking View Member's YouTube Profile
Contact Info
Send a message via ICQ to mrnightowl Send a message via AIM to mrnightowl Send a message via MSN to mrnightowl Send a message via Yahoo to mrnightowl Send a message via Skype™ to mrnightowl
Default Currency Exchange Script Toss

I needed a simple little script for currency exchange so i just wrote one real quick. Feel free to use, change, or whatever ...

All it does is connect to google currency converter and grabs the static data I'm looking for. To change which currency to exchange and the amount you can change the options at the top. I didn't need it for all currencies so I made it this way. I could make drop down menus if anyone would be interested. Peace


Code:
<?PHP
$amount = 1;
$from = USD;
$to = MXN;
$time = stream_context_create(array(
    'http' => array('timeout' => 1))); 
$hold = file_get_contents("http://www.google.com/finance/converter?a=$amount&from=$from&to=$to", 0, $time);
$res = preg_match("/<span class=bld>(.*)<\/span>/",$hold,$match);
$result = $match[1];
$final = preg_replace('#\D*?(\d+(\.\d+)?)\D*#','$1',$result);
echo "<center><font size='+1'>Current Exchange: Mexico</font><br> $amount $from = <b> $final pesos</b></center>";
?>

not here to sell or convince only to learn and interact
mrnightowl is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum

Tags
currency, exchange, script, toss

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 12:55 PM.