Nouveau fichier

This commit is contained in:
Rodolphe Quiedeville 2004-07-21 11:06:59 +00:00
parent 16e3bd6960
commit 59910c5dee

24
htdocs/test.php Normal file
View File

@ -0,0 +1,24 @@
<?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>";
?>