Is it not possible to use $_GET[] in plugins, in CMSMS? I have tried some different things now, and it gives me grey hairs..

Regards
Thomas
I'm not a coder for real but have you made a look at tag {get_template_vars}?Foden wrote: I found out that I can do the following :
echo $_GET["page"]; and get the page ID.
In Smarty you can access a $_GET['foo'] variable with through the smarty variable:I'm not a coder for real but have you made a look at tag {get_template_vars}?
Code: Select all
{$smarty.get.foo}
Code: Select all
foreach ($_GET as $index => $value)
{
echo "$index => $value<br />";
}
Code: Select all
$test = 'test123';
include 'test/test.php';
Code: Select all
<?php
echo $test;
?>