I have worked out how to pass variables to the page.<br><br>I learned from <a href="http://www.pmwiki.org/wiki/Cookbook/Quiz">http://www.pmwiki.org/wiki/Cookbook/Quiz</a> (thanks)<br><br>The limitation I am encountering is that while I can detect whether or not the variable was set, I cannot know what the contents are.
<br><br>I have implemented the following with success:<br><br><span style="font-weight: bold; font-style: italic;">In my config.php:</span><br><br>$Conditions['oSectionRow'] = '$_REQUEST[&quot;oSectionRow&quot;]';<br>$Conditions['oSectionThumb'] = '$_REQUEST[&quot;oSectionThumb&quot;]';
<br><br><br><span style="font-weight: bold; font-style: italic;">and in my wiki page:</span><br><br>(:if oSectionThumb:)<br>[[&lt;&lt;]] oSectionThumb param was set [[&lt;&lt;]]<br>(:if:)<br><br>(:if oSectionRow:)<br>[[&lt;&lt;]] oSectionRow parame was set [[&lt;&lt;]]
<br>(:if:)<br><br clear="all"><br>Now.... what I would like to do is be able to query the value after calling Group.Page?oSection='Thumb'<br><br>e.g.<br><br>(:if oSection = 'Thumb':)<br>
[[&lt;&lt;]] oSection param was set and it's value was THUMB![[&lt;&lt;]]<br>
(:if:)<br>
<br>Is this possible?<br><br>-- <br>Octocias<br><a href="http://www.octocias.com">http://www.octocias.com</a>