topical media & game development
[] readme course(s) preface I 1 2 II 3 4 III 5 6 7 IV 8 9 10 V 11 12 afterthought(s) appendix reference(s) example(s) resource(s) _

talk show tell print

portal-advancedsearchresults.php



  <?PHP
  
  results = core->Search->doAdvancedSearch();
  
  search_fields = array("title", "description", "keywords", "matchconditions", "beforedd", "beforemm", "beforeyyyy", "afterdd", "aftermm", "afteryyyy", "sortby");
  sortby_options = array("relevance" => "Relevance", "datedes" => "Date (newest first)", "dateasc" => "Date (oldest first)");
  
  //echo '<pre>',var_dump(results),'</pre>';
  
  ?>
  
      <div id="content">
  
        <div class="contentTitle">Your search returned the following items: </div> 
  
        <div class="subTitle">Click for a new advanced search... </a></div> 
            
            <?PHP
  
  if(!empty(results)) {
  /*
          foreach(sortby_options as shortname => longname) {
                  if(shortname != sortby) {
                          echo '',longname,'</a> | ';
                  }
                  else {
                          echo '<b>',longname,'</b> | ';
                  }
          }
  */
          foreach(results as result) {
                  //echo '<li><b>',result[1],'</a></b><br />',result[2],'<br />&nbsp;</li>';
                  ?>
        <div class="result"><div class="resultWrapper">
  
          <div class="header">
  
                          <div class="resultTitle"></a></div>
  
                          <div class="resultRating"><!--<strong>* * * *</strong>--></div>
  
                  <p class="date"><!--<small>10-01-2007</small>--></p>
  
          </div>
  
                  <div class="entry">
  
            <p><?PHP echo result[2]; ?></p>
  
          </div>
  
        </div></div>
                  <?PHP
          }
  }
  else {
          ?>
          <div class="header">No results!</div>
          <?PHP
  }
  
  ?>
  
  </div>


(C) A. Eliëns 2/9/2007

You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.