The following files exists in this folder. Click to view.
databasDump.php45 lines UTF-8 Unix (LF) 123456789101112131415161718192021222324252627282930313233343536373839404142434445
<?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");
?>