passthru も pdftk も使用せず、2004 年に作成されたスクリプトだけを使用する別の方法がありますが、それでもうまく機能します: forge_fdf
それはあなたのpdfにまっすぐに組み込むことができるfdfを構築するのに役立ちます、それはあなたがあなたを意味します
これを php ファイルに保存します。たとえば、generatePdf.php とします。
require_once('forge_fdf.php');
// leave this blank if we're associating the FDF w/ the PDF via URL
$pdf_form_url= "";
// default data; these two arrays must ultimately list all of the fields
// you desire to alter, even if you just want to set the 'hidden' flag;
//
//
$fdf_data_names= array(); // none of these in this example
$fdf_data_strings= array(); // none of these in this example
$fdf_data_strings['email']=mb_strtolower($row_delivreur['firstname']).'.'.mb_strtolower($row_delivreur['lastname']).'@gmail.com';
$fields_hidden= array();
$fields_readonly= array();
// set this to retry the previous state
$retry_b= false;
header( 'content-type: application/vnd.fdf' );
echo forge_fdf( $pdf_form_url,
$fdf_data_strings,
$fdf_data_names,
$fields_hidden,
$fields_readonly );
Pathtoyourpdf/nameofpdffile.pdf#FDF=generatePdf.php へのリンクを作成すると、ブラウザーで PDF ファイルが開きます (または、ディスクに保存する方法があると思います)。フィールドの電子メールには MYSQL からのデータが入力されます。mb_strtolower($row_delivreur['firstname']).'.'.mb_strtolower($row_delivreur['lastname']).'@gmail.com'
チェックボックス、ラジオボタンなどで動作します... firefox でうまく開きます。他のブラウザでテストする必要があります。
PDF HACKSの詳細情報