* Thus wrote Nicklas Bondesson: > 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);
Are you using sessions? you might be running into the cache limiter issue, try this before starting the session: session_cache_limiter('public'); or session_cache_limiter('private'); Curt -- First, let me assure you that this is not one of those shady pyramid schemes you've been hearing about. No, sir. Our model is the trapezoid! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php