The following files exists in this folder. Click to view.
databasDump.php
45 lines UTF-8 Unix (LF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
#require_once('dbConn.php');
require_once('common.php');
require_once('../../incl/functions.php');
$sqlcreate = createCodeFromFile("db_reset.sql", true, "sql");
// -----------------------------------------------------------------------------
//
// Sätt aside och content
//
$aside2 = "";
$content = $aside2 == "" ? "content_full" : "content";
// ----------------------------------------------------------------------
//
// Content
//
$html = <<< EOD
<article class="{$content}">
<h1>Databasdump</h1>
<section class="box">
<h2>Scriptet</h2>
<div class="code">{$sqlcreate}</div>
</section>
</article>
EOD;
// -----------------------------------------------------------------------------
//
// Create the html-page
//
$title = "Car";
$charset = "UTF-8";
$style = "stilmall.css";
// Här sköts sidbygget och utskriften.
include_once("page.php");
?>