The code should go like this.

fdf_header();
$outfdf = fdf_create();
fdf_set_value($outfdf, "our_ref", $our_ref, 0);
fdf_set_value($outfdf, "your_ref", $your_ref, 0);
fdf_set_file($outfdf, "http://xxx/test.pdf";);
fdf_save($outfdf);
fdf_close($outfdf);

Nicke

-----Original Message-----
From: Nicklas Bondesson [mailto:[EMAIL PROTECTED] 
Sent: den 3 augusti 2004 21:56
To: [EMAIL PROTECTED]
Subject: [PHP] PHP + FDF and Opera

Hi!
 
Have anyone sucessfully used the FDF functionallity together with the Opera
browser?
 
This code works like a charm in IE6 but not in Opera.
 
 fdf_header();
 $outfdf = fdf_create();
 fdf_set_value($outfdf, "our_ref", $our_ref, 0);  fdf_set_value($outfdf,
"your_ref", $your_ref, 0);  fdf_set_file($outfdf, "http://xxx/test.pdf";);
fdf_save($outfdf);  fdf_close($outfdf);
 
Any ideas?
 
Cheers,
Nicke

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to