isset vraag
Met deze regel controleer ik of in de URL de variable report gevult is.
Code (php)
als GET[report] niet gevuld is krijgt $report de waarde default.
Is het mogelijk om als report niet in de URL voorkomt $report de waarde "EMPTY" te geven??
Harry
Code (php)
Of bedoel je dat anders?
- SanThe - op 15/07/2017 16:40:12:
Of bedoel je dat anders?
Ja dus
Als in de URL geen variable voorkomt dan moet $report de waarde "EMPTY" krijgen
Ale de variable report wel voorkomt maar geen waarde heeft dan wordt $report "default"
Maar als de variable en aanwezig en een waarde heeft wordt $report die waarde.
Harry
Na het inbouwen van een stukje controle op de aanwezigheid van de gevraagde template werkt het niet meer.
Ben ik een haakje of punt-comma vergeten?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
//From the URL the report name is passed on
//Depending on it some variables sre set and a template is included
// ---------------------------------------------------------
// URL can look like printTCPDF?report=name
// &label=Yes/No
// &horseFEIid=1234567
// &type=rider/groom/horse
// ---------------------------------------------------------
//First check for a report-name
$report = ( isset ( $_GET["report"] ) ) ? trim ( $_GET["report"] ) : 'EMPTY';
$report = ( $report == '' ) ? 'default' : $report;
// Then create the template name for further use
$template = "template.".$report.".TCPDF".".php";
echo $template.<br />";
//Check if template file exitst
if(!(file_exists(dirname(__FILE__).$template))) {
echo "The template file does not exist<br />";
}
echo realpath(dirname(__FILE__)).$template."<br />";
echo dirname(__FILE__)."<br />";
?>
//From the URL the report name is passed on
//Depending on it some variables sre set and a template is included
// ---------------------------------------------------------
// URL can look like printTCPDF?report=name
// &label=Yes/No
// &horseFEIid=1234567
// &type=rider/groom/horse
// ---------------------------------------------------------
//First check for a report-name
$report = ( isset ( $_GET["report"] ) ) ? trim ( $_GET["report"] ) : 'EMPTY';
$report = ( $report == '' ) ? 'default' : $report;
// Then create the template name for further use
$template = "template.".$report.".TCPDF".".php";
echo $template.<br />";
//Check if template file exitst
if(!(file_exists(dirname(__FILE__).$template))) {
echo "The template file does not exist<br />";
}
echo realpath(dirname(__FILE__)).$template."<br />";
echo dirname(__FILE__)."<br />";
?>
Harry H Arends op 15/07/2017 19:23:34:
Ben ik een haakje of punt-comma vergeten?
Ja, op regel 15 in de bovenstaande listing.
We hebben er, bij herhaling in opeenvolgende topics, op aangedrongen om de error reporting van PHP aan te zetten. Dan meldt PHP zelf wat je fout doet, meestal inclusief het juiste regelnummer. Zou je dat dan alsjeblieft ook eens een keer willen doen?
Code (php)
1
2
3
2
3
function array_get($array,$key,$default){
return array_key_exists($key,$array) ? $array[$key] : $default;
}
return array_key_exists($key,$array) ? $array[$key] : $default;
}
Dat scheelt je dat hele gedoe iedere keer met isset(...) enz:
Overigens is het een goed idee om even te controleren of $report niet misbruikt wordt voor path traversal. Bijvoorbeeld door:
Leuk, maar wat is de exacte meerwaarde? Harry heeft al genoeg moeite zonder deze extra's.
Ook je path traversal controle is leuk, maar wat is de meerwaarde als je helemaal niets met includes doet vanuit de aangeleverde variabele? Een hoop wolligheid tegen 0 waarde.
@Ben Rob bedoeldt het goed maar je hebt wel gelijk men moet niet teveel dingen er bij halen.
De routine ziet er nu zo uit, kan misschien wel anders opgebouwdt worden.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
//First check for a report-name
$report = ( isset ( $_GET["report"] ) ) ? trim ( $_GET["report"] ) : 'EMPTY';
$report = ( $report == '' ) ? 'default' : $report;
// Then create the template name for further use
$template = "/template.TCPDF.".$report.".php";
echo $template."<br />";
//Check if template file exitst
if(!(file_exists(dirname(__FILE__)."/".$template))) {
echo "The template file does not exist<br />";
}
echo "Template file : ".dirname(__FILE__)."/".$template."<br />";
echo realpath(dirname(__FILE__))."<br />";
echo dirname(__FILE__)."<br />";
?>
//First check for a report-name
$report = ( isset ( $_GET["report"] ) ) ? trim ( $_GET["report"] ) : 'EMPTY';
$report = ( $report == '' ) ? 'default' : $report;
// Then create the template name for further use
$template = "/template.TCPDF.".$report.".php";
echo $template."<br />";
//Check if template file exitst
if(!(file_exists(dirname(__FILE__)."/".$template))) {
echo "The template file does not exist<br />";
}
echo "Template file : ".dirname(__FILE__)."/".$template."<br />";
echo realpath(dirname(__FILE__))."<br />";
echo dirname(__FILE__)."<br />";
?>
Toevoeging op 16/07/2017 11:21:51:
Nu heb ik bovenstaand script als een include in mijn hoofd script geplaatst en krijg dan de melding dat de variable op regel niet aanwezig is.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
include ("gearboxTCPDF.php");
// Extend the TCPDF class to create custom Header and Footer
class MYPDF extends TCPDF {
//Page header
function Header() {
// Logo
// Set color
$this->SetTextColor(0, 0, 0);
// Set font
$this->SetFont('helvetica', 'B', 34);
// Title
$this->Cell(0, 0, $report, 0, false, 'C', 0, 'L', 0, false, 'M', 'M');
$image_file = 'images/Header_Brief.png';
$this->Image($image_file, 0, 6, 210, '', 'PNG', '', 'T', false, 300, '', false, false, 0, false, false, false);
}
?>
include ("gearboxTCPDF.php");
// Extend the TCPDF class to create custom Header and Footer
class MYPDF extends TCPDF {
//Page header
function Header() {
// Logo
// Set color
$this->SetTextColor(0, 0, 0);
// Set font
$this->SetFont('helvetica', 'B', 34);
// Title
$this->Cell(0, 0, $report, 0, false, 'C', 0, 'L', 0, false, 'M', 'M');
$image_file = 'images/Header_Brief.png';
$this->Image($image_file, 0, 6, 210, '', 'PNG', '', 'T', false, 300, '', false, false, 0, false, false, false);
}
?>
Toevoeging op 16/07/2017 11:24:55:
Harry H Arends op 16/07/2017 10:30:48:
@Ward, sorry ik was dit in een los script aan het testen, buiten het grote script om, en was dus vergeten om error melding daarin te plaatsen. Dat automatischme is er nog niet.
@Ben Rob bedoeldt het goed maar je hebt wel gelijk men moet niet teveel dingen er bij halen.
De routine ziet er nu zo uit, kan misschien wel anders opgebouwdt worden.
Toevoeging op 16/07/2017 11:21:51:
Nu heb ik bovenstaand script als een include in mijn hoofd script geplaatst en krijg dan de melding dat de variable op regel 14 niet aanwezig is. Hier stond eerst gewoon $_GET['report'] en dat werkte wel.
Moet ik iets speciaal doen om variabelen uit een include door te sturen??
@Ben Rob bedoeldt het goed maar je hebt wel gelijk men moet niet teveel dingen er bij halen.
De routine ziet er nu zo uit, kan misschien wel anders opgebouwdt worden.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
//First check for a report-name
$report = ( isset ( $_GET["report"] ) ) ? trim ( $_GET["report"] ) : 'EMPTY';
$report = ( $report == '' ) ? 'default' : $report;
// Then create the template name for further use
$template = "/template.TCPDF.".$report.".php";
echo $template."<br />";
//Check if template file exitst
if(!(file_exists(dirname(__FILE__)."/".$template))) {
echo "The template file does not exist<br />";
}
echo "Template file : ".dirname(__FILE__)."/".$template."<br />";
echo realpath(dirname(__FILE__))."<br />";
echo dirname(__FILE__)."<br />";
?>
//First check for a report-name
$report = ( isset ( $_GET["report"] ) ) ? trim ( $_GET["report"] ) : 'EMPTY';
$report = ( $report == '' ) ? 'default' : $report;
// Then create the template name for further use
$template = "/template.TCPDF.".$report.".php";
echo $template."<br />";
//Check if template file exitst
if(!(file_exists(dirname(__FILE__)."/".$template))) {
echo "The template file does not exist<br />";
}
echo "Template file : ".dirname(__FILE__)."/".$template."<br />";
echo realpath(dirname(__FILE__))."<br />";
echo dirname(__FILE__)."<br />";
?>
Toevoeging op 16/07/2017 11:21:51:
Nu heb ik bovenstaand script als een include in mijn hoofd script geplaatst en krijg dan de melding dat de variable op regel 14 niet aanwezig is. Hier stond eerst gewoon $_GET['report'] en dat werkte wel.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
include ("gearboxTCPDF.php");
// Extend the TCPDF class to create custom Header and Footer
class MYPDF extends TCPDF {
//Page header
function Header() {
// Logo
// Set color
$this->SetTextColor(0, 0, 0);
// Set font
$this->SetFont('helvetica', 'B', 34);
// Title
$this->Cell(0, 0, $report, 0, false, 'C', 0, 'L', 0, false, 'M', 'M');
$image_file = 'images/Header_Brief.png';
$this->Image($image_file, 0, 6, 210, '', 'PNG', '', 'T', false, 300, '', false, false, 0, false, false, false);
}
?>
include ("gearboxTCPDF.php");
// Extend the TCPDF class to create custom Header and Footer
class MYPDF extends TCPDF {
//Page header
function Header() {
// Logo
// Set color
$this->SetTextColor(0, 0, 0);
// Set font
$this->SetFont('helvetica', 'B', 34);
// Title
$this->Cell(0, 0, $report, 0, false, 'C', 0, 'L', 0, false, 'M', 'M');
$image_file = 'images/Header_Brief.png';
$this->Image($image_file, 0, 6, 210, '', 'PNG', '', 'T', false, 300, '', false, false, 0, false, false, false);
}
?>
Moet ik iets speciaal doen om variabelen uit een include door te sturen??
En $report is dus niet bekend in de function.
Ik gebruik dan op de eerste regel in de function: global $report;
Dan is die wel bekend, maar ik weet niet of dit verstandig is in een class want ik gebruik nooit class.
Een andere manier is de variabele mee te geven bij de aanroep van de function: Header($report) maar dan moet je ook de function zelf aanpassen.
- SanThe - op 16/07/2017 11:55:54:
Variabelen die buiten een function zijn aangemaakt kun je niet zomaar in een function gebruiken.
En $report is dus niet bekend in de function.
Ik gebruik dan op de eerste regel in de function: global $report;
Dan is die wel bekend, maar ik weet niet of dit verstandig is in een class want ik gebruik nooit class.
Een andere manier is de variabele mee te geven bij de aanroep van de function: Header($report) maar dan moet je ook de function zelf aanpassen.
En $report is dus niet bekend in de function.
Ik gebruik dan op de eerste regel in de function: global $report;
Dan is die wel bekend, maar ik weet niet of dit verstandig is in een class want ik gebruik nooit class.
Een andere manier is de variabele mee te geven bij de aanroep van de function: Header($report) maar dan moet je ook de function zelf aanpassen.
Ik heb het niet over een functie maar een include of is dat hetzelfde??
Voor de function zal $report bekend zijn, maar in de function niet.
Ik denk dat je daarvoor geen include nodig hebt maar dat het makkelijk in de class zelf kan.
Maar ik weet niet hoe die class er verder uitziet.
Waar plaats ik in een script dan global $report
Warning: Cannot modify header information - headers already sent by (output started at /home/harry-arends.nl/public_html/event/gearboxTCPDF.php:57) maar ik stuur niets
dit is nu mijn code:
Code (php)
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
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
<?p[hp
// if no active session we start a new one
if (session_id() == "") session_start();
ini_set("memory_limit","80M");
// Remove this in production, for debug only
ini_set("error_reporting", E_ALL);
include("datacon.php");
include("include/functions.php");
// tcpdf are in the websites root directory
require_once('../tcpdf/config/lang/eng.php');
require_once('../tcpdf/tcpdf.php');
include ("gearboxTCPDF.php");
// Extend the TCPDF class to create custom Header and Footer
class MYPDF extends TCPDF {
//Page header
function Header() {
global $report;
// Logo
// Set color
$this->SetTextColor(0, 0, 0);
// Set font
$this->SetFont('helvetica', 'B', 34);
// Title
$this->Cell(0, 0, $report, 0, false, 'C', 0, 'L', 0, false, 'M', 'M');
$image_file = 'images/Header_Brief.png';
$this->Image($image_file, 0, 6, 210, '', 'PNG', '', 'T', false, 300, '', false, false, 0, false, false, false);
}
?>
// if no active session we start a new one
if (session_id() == "") session_start();
ini_set("memory_limit","80M");
// Remove this in production, for debug only
ini_set("error_reporting", E_ALL);
include("datacon.php");
include("include/functions.php");
// tcpdf are in the websites root directory
require_once('../tcpdf/config/lang/eng.php');
require_once('../tcpdf/tcpdf.php');
include ("gearboxTCPDF.php");
// Extend the TCPDF class to create custom Header and Footer
class MYPDF extends TCPDF {
//Page header
function Header() {
global $report;
// Logo
// Set color
$this->SetTextColor(0, 0, 0);
// Set font
$this->SetFont('helvetica', 'B', 34);
// Title
$this->Cell(0, 0, $report, 0, false, 'C', 0, 'L', 0, false, 'M', 'M');
$image_file = 'images/Header_Brief.png';
$this->Image($image_file, 0, 6, 210, '', 'PNG', '', 'T', false, 300, '', false, false, 0, false, false, false);
}
?>
de inhoud van de include file(gearboxTCPDF.php is als volgt:
Code (php)
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
46
47
48
49
50
51
52
53
54
55
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
46
47
48
49
50
51
52
53
54
55
<?php
//============================================================+
// File name : gearboxTCPDF.php
// Begin : 2017-07-15
// Last Update : 2017-07-15
// called from : printTCPDF.php
//
// Description : This script acts like a gearbox, controlling
// witch report should be printed.
//
// Author: Harry H. Arends
//
//(c) Copyright: 2017
// Harry H. Arends
// 7521VG13 Enschede
// www.military-boekelo.nl
// [email protected]
//============================================================+
//From the URL the report name is passed on
//Depending on it some variables sre set and a template is included
// ---------------------------------------------------------
// URL can look like printTCPDF?report=name
// &label=Yes/No
// &horseFEIid=1234567
// &type=rider/groom/horse
// ---------------------------------------------------------
//The following report are possible
/* URL like printTCPDF.php?report=name
*** reportname ******** description *************************
* accomodation requested accomodation rider & groom *
* all-entries simple listing of all entrie entered *
* bedding list horses on straw/schavings *
* caravan list grooms in caravan with number *
* checkCastrated check and list all geding *
* entriescompetition print all entries in competition *
* entriesWaitingList print combinations on the waitinglist *
* FEIcheck contains Rider/Horse FEIid */
/* URL like printTCPDF.php?report=name&FEIid=123456789
*** reportname ******** description *************************
* EntrieSingle Print single combination */
// ---------------------------------------------------------
//First check for a report-name
$report = ( isset ( $_GET["report"] ) ) ? trim ( $_GET["report"] ) : 'EMPTY';
$report = ( $report == '' ) ? 'default' : $report;
// Then create the template name for further use
$template = "/template.TCPDF.".$report.".php";
$html = $template."<br />";
//Check if template file exitst
if(!(file_exists(dirname(__FILE__)."/".$template))) {
$html .= " The template file does not exist<br />";
}
//$html .= "Template file : ".dirname(__FILE__)."/".$template."<br />";
//$html .= realpath(dirname(__FILE__))."<br />";
//$html .= dirname(__FILE__)."<br />";
?>
//============================================================+
// File name : gearboxTCPDF.php
// Begin : 2017-07-15
// Last Update : 2017-07-15
// called from : printTCPDF.php
//
// Description : This script acts like a gearbox, controlling
// witch report should be printed.
//
// Author: Harry H. Arends
//
//(c) Copyright: 2017
// Harry H. Arends
// 7521VG13 Enschede
// www.military-boekelo.nl
// [email protected]
//============================================================+
//From the URL the report name is passed on
//Depending on it some variables sre set and a template is included
// ---------------------------------------------------------
// URL can look like printTCPDF?report=name
// &label=Yes/No
// &horseFEIid=1234567
// &type=rider/groom/horse
// ---------------------------------------------------------
//The following report are possible
/* URL like printTCPDF.php?report=name
*** reportname ******** description *************************
* accomodation requested accomodation rider & groom *
* all-entries simple listing of all entrie entered *
* bedding list horses on straw/schavings *
* caravan list grooms in caravan with number *
* checkCastrated check and list all geding *
* entriescompetition print all entries in competition *
* entriesWaitingList print combinations on the waitinglist *
* FEIcheck contains Rider/Horse FEIid */
/* URL like printTCPDF.php?report=name&FEIid=123456789
*** reportname ******** description *************************
* EntrieSingle Print single combination */
// ---------------------------------------------------------
//First check for a report-name
$report = ( isset ( $_GET["report"] ) ) ? trim ( $_GET["report"] ) : 'EMPTY';
$report = ( $report == '' ) ? 'default' : $report;
// Then create the template name for further use
$template = "/template.TCPDF.".$report.".php";
$html = $template."<br />";
//Check if template file exitst
if(!(file_exists(dirname(__FILE__)."/".$template))) {
$html .= " The template file does not exist<br />";
}
//$html .= "Template file : ".dirname(__FILE__)."/".$template."<br />";
//$html .= realpath(dirname(__FILE__))."<br />";
//$html .= dirname(__FILE__)."<br />";
?>
heb ook nog gekeken of ik ergens een print of echo opdracht heb staan maar nee want daarlijkt deze fout.
Indie nodig kan ik hethoofd script ook posten.
Harry
Toevoeging op 16/07/2017 20:00:23:
Harry H Arends op 16/07/2017 10:30:48:
@Ward, sorry ik was dit in een los script aan het testen, buiten het grote script om, en was dus vergeten om error melding daarin te plaatsen. Dat automatischme is er nog niet.
@Ben Rob bedoeldt het goed maar je hebt wel gelijk men moet niet teveel dingen er bij halen.
De routine ziet er nu zo uit, kan misschien wel anders opgebouwdt worden.
Toevoeging op 16/07/2017 11:21:51:
Nu heb ik bovenstaand script als een include in mijn hoofd script geplaatst en krijg dan de melding dat de variable op regel niet aanwezig is.
Toevoeging op 16/07/2017 11:24:55:
@Ben Rob bedoeldt het goed maar je hebt wel gelijk men moet niet teveel dingen er bij halen.
De routine ziet er nu zo uit, kan misschien wel anders opgebouwdt worden.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
//First check for a report-name
$report = ( isset ( $_GET["report"] ) ) ? trim ( $_GET["report"] ) : 'EMPTY';
$report = ( $report == '' ) ? 'default' : $report;
// Then create the template name for further use
$template = "/template.TCPDF.".$report.".php";
echo $template."<br />";
//Check if template file exitst
if(!(file_exists(dirname(__FILE__)."/".$template))) {
echo "The template file does not exist<br />";
}
echo "Template file : ".dirname(__FILE__)."/".$template."<br />";
echo realpath(dirname(__FILE__))."<br />";
echo dirname(__FILE__)."<br />";
?>
//First check for a report-name
$report = ( isset ( $_GET["report"] ) ) ? trim ( $_GET["report"] ) : 'EMPTY';
$report = ( $report == '' ) ? 'default' : $report;
// Then create the template name for further use
$template = "/template.TCPDF.".$report.".php";
echo $template."<br />";
//Check if template file exitst
if(!(file_exists(dirname(__FILE__)."/".$template))) {
echo "The template file does not exist<br />";
}
echo "Template file : ".dirname(__FILE__)."/".$template."<br />";
echo realpath(dirname(__FILE__))."<br />";
echo dirname(__FILE__)."<br />";
?>
Toevoeging op 16/07/2017 11:21:51:
Nu heb ik bovenstaand script als een include in mijn hoofd script geplaatst en krijg dan de melding dat de variable op regel niet aanwezig is.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
include ("gearboxTCPDF.php");
// Extend the TCPDF class to create custom Header and Footer
class MYPDF extends TCPDF {
//Page header
function Header() {
// Logo
// Set color
$this->SetTextColor(0, 0, 0);
// Set font
$this->SetFont('helvetica', 'B', 34);
// Title
$this->Cell(0, 0, $report, 0, false, 'C', 0, 'L', 0, false, 'M', 'M');
$image_file = 'images/Header_Brief.png';
$this->Image($image_file, 0, 6, 210, '', 'PNG', '', 'T', false, 300, '', false, false, 0, false, false, false);
}
?>
include ("gearboxTCPDF.php");
// Extend the TCPDF class to create custom Header and Footer
class MYPDF extends TCPDF {
//Page header
function Header() {
// Logo
// Set color
$this->SetTextColor(0, 0, 0);
// Set font
$this->SetFont('helvetica', 'B', 34);
// Title
$this->Cell(0, 0, $report, 0, false, 'C', 0, 'L', 0, false, 'M', 'M');
$image_file = 'images/Header_Brief.png';
$this->Image($image_file, 0, 6, 210, '', 'PNG', '', 'T', false, 300, '', false, false, 0, false, false, false);
}
?>
Toevoeging op 16/07/2017 11:24:55:
Harry H Arends op 16/07/2017 10:30:48:
@Ward, sorry ik was dit in een los script aan het testen, buiten het grote script om, en was dus vergeten om error melding daarin te plaatsen. Dat automatischme is er nog niet.
@Ben Rob bedoeldt het goed maar je hebt wel gelijk men moet niet teveel dingen er bij halen.
De routine ziet er nu zo uit, kan misschien wel anders opgebouwdt worden.
Toevoeging op 16/07/2017 11:21:51:
Nu heb ik bovenstaand script als een include in mijn hoofd script geplaatst en krijg dan de melding dat de variable op regel 14 niet aanwezig is. Hier stond eerst gewoon $_GET['report'] en dat werkte wel.
Moet ik iets speciaal doen om variabelen uit een include door te sturen??
@Ben Rob bedoeldt het goed maar je hebt wel gelijk men moet niet teveel dingen er bij halen.
De routine ziet er nu zo uit, kan misschien wel anders opgebouwdt worden.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
//First check for a report-name
$report = ( isset ( $_GET["report"] ) ) ? trim ( $_GET["report"] ) : 'EMPTY';
$report = ( $report == '' ) ? 'default' : $report;
// Then create the template name for further use
$template = "/template.TCPDF.".$report.".php";
echo $template."<br />";
//Check if template file exitst
if(!(file_exists(dirname(__FILE__)."/".$template))) {
echo "The template file does not exist<br />";
}
echo "Template file : ".dirname(__FILE__)."/".$template."<br />";
echo realpath(dirname(__FILE__))."<br />";
echo dirname(__FILE__)."<br />";
?>
//First check for a report-name
$report = ( isset ( $_GET["report"] ) ) ? trim ( $_GET["report"] ) : 'EMPTY';
$report = ( $report == '' ) ? 'default' : $report;
// Then create the template name for further use
$template = "/template.TCPDF.".$report.".php";
echo $template."<br />";
//Check if template file exitst
if(!(file_exists(dirname(__FILE__)."/".$template))) {
echo "The template file does not exist<br />";
}
echo "Template file : ".dirname(__FILE__)."/".$template."<br />";
echo realpath(dirname(__FILE__))."<br />";
echo dirname(__FILE__)."<br />";
?>
Toevoeging op 16/07/2017 11:21:51:
Nu heb ik bovenstaand script als een include in mijn hoofd script geplaatst en krijg dan de melding dat de variable op regel 14 niet aanwezig is. Hier stond eerst gewoon $_GET['report'] en dat werkte wel.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
include ("gearboxTCPDF.php");
// Extend the TCPDF class to create custom Header and Footer
class MYPDF extends TCPDF {
//Page header
function Header() {
// Logo
// Set color
$this->SetTextColor(0, 0, 0);
// Set font
$this->SetFont('helvetica', 'B', 34);
// Title
$this->Cell(0, 0, $report, 0, false, 'C', 0, 'L', 0, false, 'M', 'M');
$image_file = 'images/Header_Brief.png';
$this->Image($image_file, 0, 6, 210, '', 'PNG', '', 'T', false, 300, '', false, false, 0, false, false, false);
}
?>
include ("gearboxTCPDF.php");
// Extend the TCPDF class to create custom Header and Footer
class MYPDF extends TCPDF {
//Page header
function Header() {
// Logo
// Set color
$this->SetTextColor(0, 0, 0);
// Set font
$this->SetFont('helvetica', 'B', 34);
// Title
$this->Cell(0, 0, $report, 0, false, 'C', 0, 'L', 0, false, 'M', 'M');
$image_file = 'images/Header_Brief.png';
$this->Image($image_file, 0, 6, 210, '', 'PNG', '', 'T', false, 300, '', false, false, 0, false, false, false);
}
?>
Moet ik iets speciaal doen om variabelen uit een include door te sturen??
=====================================================
Om toch verder te kunnen heb ik de regels met code uit de include gekopieerd naat de hoofd script en nu werkt het wel. toch wel vreemd.
bedankt voor alle input, Harry