Källkod
Följande filer och mappar finns under mappen webbserverprogrammering.
Mappar visas till vänster och filer till höger. Klicka på en fil eller mapp för att öppna nedan eller visa dess innehåll.
webbserverprogrammering/exercises/include/
7 filer
include_1.php
include_1_INCL.php
include_2_end.php
include_2_page1.php
include_2_page2.php
include_2_page3.php
include_2_start.php
include_1_INCL.php
include_2_end.php
include_2_page1.php
include_2_page2.php
include_2_page3.php
include_2_start.php
include_1_INCL.php
18 lines ASCII Windows (CRLF)
<?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
?>
<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="utf-8">
<title>Inkludera 1 INKLUDERAD</title>
</head>
<body>
<?php
echo "Hej svejs!<br>";
?>
</body>
</html>