Advertisement
killerbng

WOD.php

May 20th, 2015
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.83 KB | None | 0 0
  1. <?php
  2. ini_set("date.timezone", "Europe/Moscow");
  3. function wod($lang, $mode="N"){
  4.     echo '<div id="'.$lang.'" style="width:540px;height:450px;margin:0 auto;"><iframe src="http://www.innovativelanguage.com/widgets/wotd/embed.php?language='.$lang.'&type=large&bg=%23FFFFFF&content=%23000&header=%2350A025&highlight=%23F9F9FA&opacity=1&scrollbg=%2300CAED&sound=%2300ACED&text=%2300ACED&quiz='.$mode.'" width="540" height="450" frameborder="0" scrolling="no"></iframe></div>';
  5. }
  6. ?>
  7. <!doctype html>
  8. <html>
  9. <head>
  10. <meta charset="utf-8">
  11. <title>Misc Words of the Day</title>
  12. <style>
  13.     body{background:#999;text-align:center;}
  14. </style>
  15. </head>
  16. <body>
  17.     <!-- Brazilian -->
  18.     <?php wod('Portuguese_Brazil');?>
  19.    
  20.     <!-- Finnish -->
  21.     <?php wod('Finnish');?>
  22.    
  23.     <!-- German -->
  24.     <?php wod('German', "Y");?>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement