<?php
/**
* @author Bettina Schwarzer, Fritz-Haber-Institut
* @copyright 02/2012
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<link href="../css/db.css" rel="STYLESHEET" type="TEXT/CSS" />
<meta name="author" content="Bettina Schwarzer" />
<title>Test Betrag mit Tausendertrennzeichen</title>
</head>
<body>
<h3> Test Betrag mit Tausendertrennzeichen</h3>
<?php
include ($_SERVER['DOCUMENT_ROOT'] ."/fhiiqm/inc/func_lib.inc.php");
echo " 20.222,11; dw=" . dbformat_wert("20.222,11") . "<br />";
echo " 20.222.11; dw=" . dbformat_wert("20.222.11") . "<br />";
echo " 20.222; dw=" . dbformat_wert("20.222") . "<br />";
echo " 1.120.222,11; dw=" . dbformat_wert("1.120.222,11") . "<br />";
echo " 1.120.222.11; dw=" . dbformat_wert("1.120.222.11") . "<br />";
echo " 1.120.222; dw=" . dbformat_wert("1.120.222") . "<br />";
echo " 120222,11; dw=" . dbformat_wert("120222,11") . "<br />";
echo " 11120222; dw=" . dbformat_wert("11120222") . "<br />";
?>
</body></html>