dolibarr/htdocs/test.php

25 lines
169 B
PHP
Raw Normal View History

2004-07-21 13:06:59 +02:00
<?php
$t = 1.23;
print "(t=1.23) $t<br>";
$t = $t * 2 ;
print "t=t*2 $t<br>";
$t = "1,23";
print "(t=1,23) $t<br>";
$t = $t * 2 ;
print "t=t*2 $t<br>";
?>