Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 14th, 2012  |  syntax: None  |  size: 0.64 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html>
  2. <html lang="nl">
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <title>Week 1 - Activiteit 7 - Centen omzetten naar Euro's</title>
  6.         <style type="text/css">
  7.             span { display: inline-block; width: 200px; }
  8.         </style>
  9.     </head>
  10.     <body>
  11.         <?php
  12.         /**
  13.          * @author  Dominique de Graaff
  14.          * @since   11-02-2012
  15.          */
  16.         // Variables
  17.         $cents = 446;
  18.         $euros = $cents / 100;
  19.  
  20.         // Output        
  21.         echo "<h1>Centen naar Euro's</h1>\n";
  22.         echo "\t\t $cents centen = &euro; ". str_replace('.', ',', $euros);
  23.        
  24.         ?>
  25.     </body>
  26. </html>