Temperature:

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>

<form action="handler054.php" method="post">
Temperature: <input type = "text" name = "temp"><br>
<label for ="scale">Scale: </label>
    <select name = "scale" class="selector">
        <option value = "celcius">Celcius to Fahrenheit</option>
        <option value = "fahrenheit">Fahrenheit to Celcius</option>
    </select>
<input type = "submit">
</form>

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

</body>
</html>