こんにちは、私は fpdf を使用して pdf を自動的に生成し、SQL からデータを読み取ります行..列でテキストを折り返す方法はありますか.出力画像は投稿の最後に添付されています..もう1つの質問、このpdfを自動的に電子メールに送信するにはどうすればよいですか
<?php
require('fpdf.php');
//Connect to your database
$link = mysql_connect('www.xxxxxxx.co.uk', 'xxxxxxx', 'xxxxxx');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
//Create new pdf file
$pdf=new FPDF();
//Open file
$pdf->Open();
//Disable automatic page break
$pdf->SetAutoPageBreak(true);
//Add first page
$pdf->AddPage();
//set initial y axis position per page
$y_axis_initial = 25;
//print column titles for the actual page
$pdf->SetFillColor(232, 232, 232);
$pdf->SetFont('Arial', 'B', 12);
$pdf->SetY($y_axis_initial);
$pdf->SetX(5);
/*$pdf->Cell(30, 6, 'CODE', 1, 0, 'L', 1);
$pdf->Cell(30, 6, 'NAME', 1, 0, 'L', 1);
$pdf->Cell(30, 6, 'PRICE', 1, 0, 'R', 1);*/
$y_axis = $y_axis + $row_height;
mysql_select_db("web39-sdasdasd", $link);
$q = "SELECT qr_topics,start_of,differential_dia,things_not,investigations,risks FROM qr_table";
$result = mysql_query ($q, $link);
//initialize counter
$i = 0;
//Set maximum rows per page
$max = 25;
//Set Row Height
$row_height = 80;
$pdf->Cell(33, 6, ' ', 1, 0, 'L', 1);
$pdf->Cell(33, 6, 'Starting off', 1, 0, 'L', 1);
$pdf->Cell(33, 6, 'Differential diagnosis', 1, 0, 'L', 1);
$pdf->Cell(33, 6, 'Not to miss', 1, 0, 'L', 1);
$pdf->Cell(33, 6, 'Investigations', 1, 0, 'L', 1);
$pdf->Cell(33, 6, 'Risks', 1, 0, 'L', 1);
$y_axis =(35);
while($row = mysql_fetch_array($result))
{
$cad = $row['qr_topics'];
$pad = $row['start_of'];
$nad = $row['differential_dia'];
$vad = $row['things_not'];
$sad = $row['investigations'];
$tad = $row['risks'];
$pdf->SetY($y_axis);
$pdf->SetX(5);
$pdf->Cell(33,80,$cad,1,0,'L',1);
$pdf->Cell(33,80,$pad,1,0,'L',1);
$pdf->Cell(33,80,$nad,1,0,'L',1);
$pdf->Cell(33,80,$vad,1,0,'L',1);
$pdf->Cell(33,80,$sad,1,0,'L',1);
$pdf->Cell(33,80,$tad,1,0,'L',1);
//Go to next row
$y_axis = $y_axis + $row_height;
$i = $i + 1;
}
mysql_close($link);
//Send file
$pdf->Output();
?>
出力を以下に示します