[[!pdoUsers?
&groups=`MEMBERS`
&tpl=`ExampleTpl`
&sortdir=`asc`
&limit=`1`
&sortby=`id`
&users=`this is where 23 should be passed`
&showLog=`0`
]]
This question has been answered by dubbs. See the first response.
<?php $output = ''; $output .= $_GET['c']; return $output; ?>
<?php return isset($_GET['c'])? $_GET['c'] : '';
<?php return isset($_GET['c'])? $_GET['c'] : 'c parameter not set';
If I could make a small suggestion -- that will throw an E_NOTICE error if the URL variable isn't set. This one line should do it all.
<!--?php return isset($_GET['c'])? $_GET['c'] : '';
It will return an empty string (above) or whatever you want (below) if $_GET['c'] isn't set:
--><?php return isset($_GET['c'])? $_GET['c'] : 'c parameter not set';
How is the shoulder? Getting better I do hope.