Thank you for your support.
Actually, i found out how to fix this problem without having to change embedded library.
$pdf = new FPDI();
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
Turns out that in your version, those two parameters are set to 'TRUE' by default. So i just had to switch them.
Regards