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["oSectionRow"]';<br>$Conditions['oSectionThumb'] = '$_REQUEST["oSectionThumb"]';
<br><br><br><span style="font-weight: bold; font-style: italic;">and in my wiki page:</span><br><br>(:if oSectionThumb:)<br>[[<<]] oSectionThumb param was set [[<<]]<br>(:if:)<br><br>(:if oSectionRow:)<br>[[<<]] oSectionRow parame was set [[<<]]
<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>
[[<<]] oSection param was set and it's value was THUMB![[<<]]<br>
(:if:)<br>
<br>Is this possible?<br><br>-- <br>Octocias<br><a href="http://www.octocias.com">http://www.octocias.com</a>