Jump to content
php.lv forumi

fpdf - pdf veidošana


sandele

Recommended Posts

sveiki,

 

izmēģinājos dažādi, bet laikam rokas par īsu

 

ar fpdf.org mēģinu izveidot vienkāršu pdf dokumentu, bet nekas nesanāk:

 

<?php
define('FPDF_FONTPATH','font/');
require('fpdf.php');
include("conectmysql.php");

$result = mysql_query("SELECT dati FROM table ORDER BY npk DESC",$db);
while ($myrow = mysql_fetch_array($result))
{
echo $myrow["dati"];
}
mysql_close();

$pdf=new FPDF();
$pdf->Open();
$pdf->AddPage();

$pdf->Output();
?>

 

paldies jau iepriekš!

Link to comment
Share on other sites

1) Varēji paskatīties sadaļā tutorials.

<?php
require('fpdf.php');

$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>

 

2) Iesaku izmantot tcpdf, tas māk attēlot arī utf-8 tekstu, bet fpdf, diemžēl to neprot..

Link to comment
Share on other sites

1) Varēji paskatīties sadaļā tutorials.

<?php
require('fpdf.php');

$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>

 

2) Iesaku izmantot tcpdf, tas māk attēlot arī utf-8 tekstu, bet fpdf, diemžēl to neprot..

 

1. tutorials skatījos, bet skaidrāks nekļuva, tāpēc arī jautāju (diemžēl mysql un php man pagaidām ir tumša bilde)

 

2.pārfrazēšu jautājumu, kā ir jāveido vaicājums no mysql datubāzes, lai teksta "Hello Wolrd!" vietā tiktu izvadīti vienas tabulas kolonas visi ieraksti pdf failā

Link to comment
Share on other sites

pamēģini šitā!

<?php

require('fpdf.php');

 

$pdf=new FPDF();

$pdf->AddPage();

$pdf->SetFont('Arial','B',16);

 

 

$y = 10;

 

$result = mysql_query("SELECT dati FROM table ORDER BY npk DESC",$db);

while ($myrow = mysql_fetch_array($result))

{

$pdf->Cell(40,$y,$myrow["dati"]);

$y+=10;

}

$pdf->Output();

?>

 

 

Tas tcpdf tiešām ir labs(ja runa ir par utf-8)! ezpdf ar labs, tikai nav utf, bet var piespiest rādīt latviešu burtus (man viss sanāca!)

Link to comment
Share on other sites

×
×
  • Create New...