Im using fpdf to generate a pdf file for my reports and Im new to this. I want to change the fill color inside a cell but whenever I reloaded the page, nothing hapeens, It still the same white fill color. Here is my code :
<?php
require("fpdf/fpdf.php");
$pdf = new FPDF('P','pt','Letter');
$pdf->SetFillColor(230,230,230);
$pdf->SetTitle("Title Here");
$pdf -> AddPage();
$pdf -> SetFont('Arial','',12);
?>
What is wrong with my code? I followed the proper way of setting the fill color but nothing happens? Can anyone help me fix it? Thanks