Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

webbsrvprg/ovningar/gr/

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

15 lines ASCII Windows (CRLF)
<!DOCTYPE html>
<html>
<body>

<?php
for($C=(-20); $C<=40$C+=10){
  
$F = (9/5)*$C+32;
  echo 
"C = $C <br>";
  echo 
"F = $F <br><br>";
}
?> 

</body>
</html>