★ wanayoo — archive 1999 http://fr.php.net/manual/function.fdf-create.phpNouvelle recherche | Portail wanayoo

PHP Home Page

Manual Table of Contents
Up to FDF
Quick Reference
English version of this pageGerman version of this pageJapanese version of this page
Italian version of this pageFrench version of this pageHungarian version of this page
Spanish version of this pageDutch version of this pageBrazilian Portuguese version of this page
Korean version of this pageCzech version of this page
FDF
* fdf_open
* fdf_close
* fdf_create
* fdf_save
* fdf_get_value
* fdf_set_value
* fdf_next_field_name
* fdf_set_ap
* fdf_set_status
* fdf_get_status
* fdf_set_file
* fdf_get_file
* fdf_set_flags
* fdf_set_opt
* fdf_set_submit_form_action
* fdf_set_javascript_action

  Thanks to:
 Chek.com
 easyDNS
 VA Linux Systems

  Related sites:
Apache
MySQL
PostgreSQL
Zend Tech.

  Community:
LinuxFund.org
OSDN
Manual: fdf_create
View the source code for this pageSearch the site



Previous page
 fdf_close
 Updated
Mon, 08 Jan 2001
fdf_save 
Next page


fdf_create

(PHP 3>= 3.0.6, PHP 4 )

fdf_create -- Create a new FDF document

Description

int fdf_create (void )

The fdf_create() creates a new FDF document. This function is needed if one would like to populate input fields in a PDF document with data.

Example 1. Populating a PDF document


<?php
$outfdf = fdf_create();
fdf_set_value($outfdf, "volume", $volume, 0);

fdf_set_file($outfdf, "http:/testfdf/resultlabel.pdf");
fdf_save($outfdf, "outtest.fdf");
fdf_close($outfdf);
Header("Content-type: application/vnd.fdf");
$fp = fopen("outtest.fdf", "r");
fpassthru($fp);
unlink("outtest.fdf");
?>
     

See also fdf_close(), fdf_save(), fdf_open().


 About Notes


Previous page
 fdf_close
 Updated
Mon, 08 Jan 2001
fdf_save 
Next page





Who's responsible for this?
Top of this page

Site
Hosting:



Located in
France
Elements of this website are subject to copyright.
Questions about installing or using PHP should be directed to one of the mailing lists.
Only questions about the website should be directed to webmaster@php.net.