<!DOCTYPE html>
<html>
<body>

<?php
$number = 123;
$txt = sprintf("%f",$number);
echo $txt;
?>

 
</body>
</html>