PHP: fdf_set_file - Manual in Deutsh
PHP: fdf_set_file - Manual in French
PHP: fdf_set_file - Manual in Polish

You Are At PHP: fdf_set_file - Manual Area


recent searches:
include functions , variable functions , post functions...




If you are new to PHP or just need to refresh your skills, this is the place to start. This series of tutorials will give you the basic knowledge you will need to create a simple PHP website.

PHP is a reflective programming language originally designed for producing dynamic web pages.[1] PHP is used mainly in server-side scripting, but can be used from a command line interface or in standalone graphical applications. Textual User Interfaces can also be created using ncurses.

PHP Manual
PrevNext

fdf_set_file

(PHP 3 >= 3.0.6, PHP 4, PHP 5)

fdf_set_file -- Set PDF document to display FDF data in

Description

bool fdf_set_file ( resource fdf_document, string url [, string target_frame] )

Selects a different PDF document to display the form results in then the form it originated from.

Parameters

fdf_document

The FDF document handle, returned by fdf_create(), fdf_open() or fdf_open_string().

url

Should be given as an absolute URL.

target_frame

Use this parameter to specify the frame in which the document will be displayed. You can also set the default value for this parameter using fdf_set_target_frame().

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example 1. Passing FDF data to a second form

<?php
  
/* set content type for Adobe FDF */
  
fdf_header();

  
/* start new fdf */
  
$fdf = fdf_create();

  
/* set field "foo" to value "bar" */
  
fdf_set_value($fdf, "foo", "bar");

  
/* tell client to display FDF data using "fdf_form.pdf" */
  
fdf_set_file($fdf, "http://www.example.com/fdf_form.pdf");

  
/* output fdf */
  
fdf_save($fdf);

  
/* clean up */
  
fdf_close($fdf);
?>

See Also

fdf_get_file()
fdf_set_target_frame()

oprogramowanie magazynowe
Najtańszy fotograf lublin na ślub
kody kreskowe paskowe RFID Czytniki mobilne drukarki etykiet termina
Pozycjonowanie stron
Dostawca kas fiskalnych w Białymstoku

Another Useful functions:


function.fdf-set-version | function.fdf-set-value | function.fdf-set-target-frame | function.fdf-set-submit-form-action | function.fdf-set-status | function.fdf-set-opt | function.fdf-set-on-import-javascript | function.fdf-set-javascript-action | function.fdf-set-flags | function.fdf-set-file | function.fdf-set-encoding | function.fdf-set-ap | function.fdf-save | function.fdf-save-string |


PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. If you are new to PHP and want to get some idea of how it works, try the introductory tutorial. After that, check out the online manual, and the example archive sites and some of the other resources available in the links section.