
Untitled
By: a guest on
Jul 14th, 2012 | syntax:
None | size: 0.64 KB | hits: 14 | expires: Never
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="utf-8">
<title>Week 1 - Activiteit 7 - Centen omzetten naar Euro's</title>
<style type="text/css">
span { display: inline-block; width: 200px; }
</style>
</head>
<body>
<?php
/**
* @author Dominique de Graaff
* @since 11-02-2012
*/
// Variables
$cents = 446;
$euros = $cents / 100;
// Output
echo "<h1>Centen naar Euro's</h1>\n";
echo "\t\t $cents centen = € ". str_replace('.', ',', $euros);
?>
</body>
</html>