banano.CallInlinePHP("TestPDF", CreateMap("Name": "test"), "ID1")
'
Sub BANano_CallInlinePHPResult(Success As Boolean, UniqueID As String, Result As String)
Log(Success)
Log(UniqueID)
Log(Result)
'maybe I have to manipulate the result ?
End Sub
'
#if PHP
function TestPDF($Name) {
require('fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Prova pdf!');
$pdf->Close();
$pdf->Output('example_006.pdf', 'D');
}
#End If