Code :
- <?php
- include('fpdf.php');
- $pdf=new FPDF();
- $pdf->AddPage();
- $pdf->SetFont('Arial','B',16);
- $pdf->Cell(70,10,'CATALOGUE Saint Pavut !');
- mysql_connect("localhost","root","" );
- mysql_select_db("test" );
- $result=mysql_query("SELECT * FROM stpavut_manifestations" );
- $nbmanif=mysql_num_rows($result);
- $pdf->AddPage();
- while($data=mysql_fetch_object($result)){
- $y=$pdf->GetY();
- $pdf->Image("../img/photos/".$data->manif_photo,10,$y,20);
- $pdf->SetFont('Arial','B',16);
- $pdf->Cell(40);
- $pdf->Cell(0,15,$data->manif_intitule,0,1);
- $pdf->SetFont('Arial','B',10);
- $pdf->Cell(40);
- $pdf->Cell(10,5,$data->manif_prix_place." euros",0,1);
- $pdf->Cell(40);
- $pdf->MultiCell(0,5,$data->manif_description,0,"J",0);
- $pdf->Cell(0,40," " );
- }
- $pdf->Output();
- ?>
|