Show sourcecode
The following files exists in this folder. Click to view.
webbserverprogrammering/ovningar/inkludera/
include1.php
include1_callback.txt
include2_end.html
include2_start.html
include2a.php
include2b.php
include2c.php
include3_numGen.html
include3a.php
include3b.php
include3c.php
include2b.php
23 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html>
<body style="margin: 0;">
<?php
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
?>
<?php include 'include2_start.html';
?>
<p> Skapa tre webbsidor med olika innehåll. Se till att alla tre sidorna får exakt samma sidstart och sidslut genom inkludera en sidstartsfil respektive en sidslutsfil.
Det som skiljer sidorna är att på sida 1 står det "Sida 1" i den del på sidorna som ska vara olika. I sida 2 står det "Sida 2", osv.
Alla sidor har en välkommen rubrik som lämpligen hamnar i sidstarts-filen.
Alla sidor har en "footer"-del med ditt namn och datum, snyggt centrerat med ett streck över sig.</p>
<br><br><br>
<div style="display: flex; justify-content: center; align-items: center;">
<a href="include2c.php">Sida 2</a>
</div>
<?php include 'include2_end.html';
?>
</body>
</html>