FPDF的问题... $ _POST没有出现

The calling function from php does not work...

function Footer()
    {

$this->Cell($this->PG_W, 5, 'All quotes are valid for 30 days.  QUOTE EXPIRES: '**.$person["CA"]**, 0, 0, 'L');
}

.$person["CA"] - does not appear on the text

any ideas??

You are inside a function, and an array named $person would not automatically be imported into its scope.

You would have to import $person into the function's scope using global, or pass it as a parameter, or as a property of the object you seem to be in.

Reference: Variable scope in the PHP manual