Webbserverprogrammering 1

Show sourcecode

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

webbsrvprg/exercises/funktioner/

ovn_funk1.php
ovn_funk2.php
ovn_funk3.php
ovn_funk4.php
ovn_funk5.php
ovn_funk6.php
ovn_funk7.php
ovn_funk8.php

ovn_funk3.php

21 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Övning funktioner 3</title>
</head>
<body>
  <?php
    
function skriv($tal1$tal2$tal3) {
      
$lista = array($tal1$tal2$tal3);
      
rsort($lista);
      return 
$lista[0];
    }

    echo 
skriv(5,199,9);

  
?>
</body>
</html>