Eyes down for a full house and away we go.
On the pages you want the search form code (could be in a chunk or template) =>
<form action="[~20~]" method="post" enctype="multipart/form-data">
<input name="search" type="text" />
<input type="submit" value="Search" />
</form>
A snippet named
search_data =>
<?php
$val = $_POST['search'];
echo "$val";
return;
?>
On the search landing page [~20~] in my example Ditto call above =>
[!Ditto? &startID=`3` &display=`all` &tpl=`ditto_tpl` &sortBy=`id` &sortDir=`ASC` &commentsChunk=`` &depth=`3` &showInMenuOnly=`1` &noResults=`No other products found` &tagDelimiter=`,` &tagData=`range` &tagMode=`onlyTags` &tags=`[[search_data]]`!]
Where in my example
range is the name of the TV you are looking for matches and
ditto_tpl is the name of your Ditto summary template chunk.
I’ve checked this on a live site and it seems to work okay.