hello is it possible to pass parameters to a php script using the {PHP} replacement tag, like this {PHP:script.php?var=value}
thank you
{PHP} replacement tag parameters
Hello,
no i don't think, 'cause ?var=value will only worl on web pages.
but if you want to to put some parameters you can do the following stuff:
Cheers
KiWiX
no i don't think, 'cause ?var=value will only worl on web pages.
but if you want to to put some parameters you can do the following stuff:
Code: Select all
[PHP]
global $var;
$var=value;
include_once( script.php );
[/PHP]
KiWiX