Webbserverprogrammering 1

Show sourcecode

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

ramverket/incl/

config.php
footer.php
header.php
ovn_incl1.php
ovn_incl2_end.php
ovn_incl2_start.php
ovn_incl3.php
ovn_incl4_end.php
ovn_incl4_start.php

ovn_incl3.php

11 lines ASCII Windows (CRLF)
<?php
  
function random_number() {
    
$result "";
    
    for (
$i 0$i 6$i++) {
      
$result .= strval(random_int(09));  
    }

    return 
$result;
  }
?>