{PHP} replacement tag parameters
Posted: Fri 10. Feb 2006, 00:24
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
thank you
The phpwcms support forum will help to find answers to your questions. The small but strong community is here since more than 10 years.
https://forum.phpwcms.org/
Code: Select all
[PHP]
global $var;
$var=value;
include_once( script.php );
[/PHP]