Yes, this seems to do the trick.  Thanks.<br><br>Question: any idea how I include an argument that contains spaces? Such as:<br><br>  [[Shop.ItemDetails?name=Book Title?price=10.95|Add to cart]]<br clear="all"><br>Thanks.<br>

<br>-- Harry<br><br>----<br>Harry Forsdick<br>New: (781) 923-0123 (Google Voice)<br><a href="http://forsdick.com">http://forsdick.com</a>  |  <a href="http://lexmedia.org">http://lexmedia.org</a>  |  <a href="http://lexmarketplace.org">http://lexmarketplace.org</a> | <a href="http://forsdick.blogspot.com">http://forsdick.blogspot.com</a>  |  <a href="http://lexdig.com">http://lexdig.com</a><br>


<br><br><div class="gmail_quote">On Mon, Jul 13, 2009 at 9:47 AM, Petko Yotov <span dir="ltr">&lt;<a href="mailto:5ko@5ko.fr">5ko@5ko.fr</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

<div class="im">On Monday 13 July 2009 13:53:44 Harry Forsdick wrote:<br>
&gt; Part of my PmWiki based website has a page where product items are<br>
&gt; presented in a short form.  For each item listed I would like to have a<br>
&gt; link to a single &quot;ItemDetails&quot; page to which I can pass arguments.  This<br>
&gt; way, I can create just one page whose content changes based on the<br>
&gt; arguments passed to it.<br>
<br>
</div>Maybe the recipe HttpVariables might be used?<br>
<div class="im"><br>
  <a href="http://www.pmwiki.org/wiki/Cookbook/HttpVariables" target="_blank">http://www.pmwiki.org/wiki/Cookbook/HttpVariables</a><br>
<br>
</div>After installing it, in your product list, you make links like this:<br>
  [[ItemDetails?color=blue&amp;price=19&amp;size=XXL | xx-large, blue]]<br>
  [[ItemDetails?color=red&amp;price=18&amp;size=XL | x-large, red]]<br>
<br>
<br>
In your ItemDetails page, you have:<br>
 * Color :  {$?color}<br>
 * Size  :  {$?size}<br>
 * Price :  {$?price}<br>
<br>
Thanks,<br>
<font color="#888888">Petko<br>
</font></blockquote></div><br>