Jump to content

Recommended Posts

Hi,

 

I have a php page that uses fpdf to produce some pdf stuff. At the start of the page I have the following

require ("inv_code39.php");

 

This include file extends the fpdf class to provide barcode functions.  I have also made the fpdf header & footer functions in this file (which are called when a new page is added using fpdf).

top of the inv_code39.php starts like this:

require ('fpdf.php');

 

class PDF_Code39 extends FPDF

{

function Footer()

{

 

 

My problem is the master page has variables that need to be used/displayed by the header and footer functions in inv_code39.php

 

Given the fpdf newpage function calls the header and footer functions automatically I can't pass variables to the functions by header($var, $var2) etc.

 

How do I define a global variable that I can use in both locations that stores the same value globally?

Link to comment
https://forums.phpfreaks.com/topic/52608-php-classes-global-variables/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.