Searching thru more than one field
I'd like to unite the Search code that asks for two input fields but turn it into one search field that looks thru two columns. I think you told me once but I can't remember. I have the following:
<label for="ss_title" class="sublabel" >Title:</label>
<input id="ss_title" name="ss_title" type="text" value="<?php echo((isset($_GET["ss_title"])?$_GET["ss_title"]:"")); ?>" class="formTextfield_Medium" tabindex="4" title="Please enter a value.">
</div>
<div class="lineGroup">
<label for="ss_keywords" class="sublabel" >Keywords:</label>
<input id="ss_keywords" name="ss_keywords" type="text" value="<?php echo((isset($_GET["ss_keywords"])?$_GET["ss_keywords"]:"")); ?>" class="formTextfield_Medium" tabindex="5" title="Please enter a value.">
</div>
I want to have one search field look thru both columns instead. Thanks!