Show sourcecode
The following files exists in this folder. Click to view.
index.html
ovn_gr1.php
ovn_gr2.php
ovn_gr3a.php
ovn_gr3b.php
ovn_gr4.php
ovn_gr5.php
ovn_gr6.php
ovn_gr7.php
ovn_gr4.php
16 lines ASCII Windows (CRLF)
<!DOCTYPE html>
<html>
<body>
<?php
for ($C=(-20); $C <=40 ; $C+=10) {
$Fahrenheit = (9/5)*$C+32;
echo "C =". $C. "<br>";
echo "F =". $Fahrenheit. "<br><br>";
}
?>
</body>
</html>