Hi Fellas!
Did anyone have success with making the required function work if using
this sample code. It didn't work for me.
--snip--
require("$_REQUEST['PDF_LIB_PATH']");
--snip--
But I have success if I do this instead...
--snip--
$PDF_LIB_PATH = $_REQUEST['PDF_LIB_PATH'];
require("$PDF_LIB_PATH");
--snip--
Anyone know why is that?
Thanks,
Scott F.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

