I have data in a table in pdf. The reuslts are input in an array. Apparently I need to put my code to change certain text in the function that produces the table. I have been told to use maybe in_array. I want the line below to appear in bold.
$line[][0] = "1. Operational";
The code here in the function for the table needs amending.
if (in_array($line, array("1. Operational","2. Financial","3. Health and Safety","4. Human Resources","5. General"))) {
$this->SetFont('Arial','B',10);
$this->Cell($line);
$this->SetFont('Arial','',9);
}
I'm proper stuck here any ideas?!?!?!