Webbserverprogrammering 1

Show sourcecode

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

ramverket/exercises/include/

ovn_incl1.php
ovn_incl2-1.php
ovn_incl2-2.php
ovn_incl2-3.php
ovn_incl3-1.php
ovn_incl3-2.php
ovn_incl3-3.php
ovn_incl4-1.php
ovn_incl4-2.php
ovn_incl4-3.php

ovn_incl4-1.php

15 lines UTF-8 Windows (CRLF)
<?php
  
// Title: Include 4
  
error_reporting(-1); // Report all type of errors
  
ini_set('display_errors'1); // Display all errors
  
ini_set('output_buffering'0); // Do not buffer outputs, write directly
  
$title "Include 4-1";
?>
<?php 
include("../../incl/ovn_incl3.php"); ?>
<?php 
include("../../incl/ovn_incl4_start.php"); ?>
<h1>Välkommen till sida nr 1</h1>
<?php
  $random_number 
random_number(); 
  echo 
"<p>$random_number</p>";
?>
<?php 
include("../../incl/ovn_incl4_end.php"); ?>