Below is my PHP code:
<html>
<head>
<title>Exampl e</title>
</head>
<body>
<?php
$str="This is a sentence";
$number=(9.94+0 .6)/10;
echo "Hello, youtube $number";
?>
</body>
</html>
After I run this program, I get a result
Hello, youtube 1.054
Why is it 1.054 rather than 1?
Please give me some help.
Best Regards
Erwin Moller
<html>
<head>
<title>Exampl e</title>
</head>
<body>
<?php
$str="This is a sentence";
$number=(9.94+0 .6)/10;
echo "Hello, youtube $number";
?>
</body>
</html>
After I run this program, I get a result
Hello, youtube 1.054
Why is it 1.054 rather than 1?
Please give me some help.
Best Regards
Erwin Moller
Comment