in reply to Re: Twig Question: Create a new XML doc using twig?
in thread Twig Question: Create a new XML doc using twig?
$root->print('$file_handle');
is unlikely to help - single quoted strings don't interpolate and in fact you probably don't mean to use a string there at all. Most likely you intended:
$root->print($file_handle);
|
---|