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/projects/typr/
14 filer
create_tables.php
dbconnection.php
getUrl.php
index.php
notes.txt
plan.php
profile.php
redovisning.html
resources/
session_check.php
styles/
sv_200.txt
sv_829.txt
test.php
dbconnection.php
getUrl.php
index.php
notes.txt
plan.php
profile.php
redovisning.html
resources/
session_check.php
styles/
sv_200.txt
sv_829.txt
test.php
profile.php
29 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
function dump($dump) {
echo "<pre>";
var_dump($dump);
echo "</pre>";
}
session_start();
include "session_check.php";
?>
<!DOCTYPE html>
<html lang="sv">
<head>
<title>Profile</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="styles/main.css">
</head>
<body>
<div id="wrapper">
<h1>profile...</h1>
</div>
</body>
</html>