9 lines
252 B
PHP
9 lines
252 B
PHP
<?php
|
|
header('Content-type: application/pdf');
|
|
include('includes/config/config.php');
|
|
include('includes/auth/auth.php');
|
|
include_once("includes/functions/functions.php");
|
|
require_once('html2fpdf_compact.php');
|
|
// activate Output-Buffer:
|
|
ob_start();
|
|
?>
|