30
0
100
86
32
212

Code:

<html>
<head>
<title>PHP TEST YAHHH</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>

<div class="topbar">
<?php
include 'navbar.php';
?>

</div>

<?php

    //function stuff
    
    function fahrenheitToCelcius ($F)
    {
    
        $c = (($F-32)*(5/9));;
        return $c;
    
    }
    
    function celciusToFahrenheit ($c)
    {
    
        $F = $c * 1.8 + 32;
        return $F;
    
    }
    
    echo fahrenheitToCelcius (86);
    echo '<br>';
    echo fahrenheitToCelcius (32);
    echo '<br>';
    echo fahrenheitToCelcius (212);
    echo '<br>';
    
    echo celciusToFahrenheit (30);
    echo '<br>';
    echo celciusToFahrenheit (0);
    echo '<br>';
    echo celciusToFahrenheit (100);
    echo '<br>';

    
?>
    

<div class="codebox">
<h3>Code:</h3>
<?php
highlight_file("ex010.php");
?>
</div>



</body>

</html>