Skip to main content

Posts

Showing posts from September, 2016

Remove playlist from youtume iframe

css animation

<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script> $(document).ready(function(){     $("#hide").click(function(){         $("p").hide();     });     $("#show").click(function(){         $("p").show();     }); }); </script> <style> /* animation sets */ /* move from / to  */ .pt-page-moveToLeft {     -webkit-animation: moveToLeft .6s ease both;     -moz-animation: moveToLeft .6s ease both;     animation: moveToLeft .6s ease both; } .pt-page-moveFromLeft {     -webkit-animation: moveFromLeft .6s ease both;     -moz-animation: moveFromLeft .6s ease both;     animation: moveFromLeft .6s ease both; } .pt-page-moveToRight {     -webk...

Get Currency Rates In php

Get Currency Rates In php <?php $code = 'AUD,GBP,EUR,CAD'; $url = "http://api.fixer.io/latest?base=USD&symbols=$code"; $json = @file_get_contents($url); $data = (array)json_decode($json); $caud =  $data['rates']->AUD; $cgbb =  $data['rates']->GBP; $ceur =  $data['rates']->EUR; $ccad =  $data['rates']->CAD; echo "<br>".$caud; echo "<br>".$cgbb; echo "<br>".$ceur; ?>