<br><br>Hi i got error<br><br>recoverable fatal error: Object of class mysqli_result could not be
converted to string in
F:\wamp\www\vijaishopping\themes\garland\block.tpl.php on line 10.<br><br><br>Hi i tried custom module, it through the error ,<br><br>What i do now, <br><br>my snippet below<br><br>&lt;?php<br><br>function alphabeticalsearch_block($op = &#39;list&#39;, $delta = 0, $edit = array()){<br>
<br>     if($op == &quot;list&quot;) {<br>            $block = array();<br>          $block[0][&quot;info&quot;] = t(&#39;Alphabetical Search&#39;);<br>        return $block;<br>      } <br>  elseif($op == &#39;view&#39;){<br>
    $alphabetical_search_result = db_query(&quot;SELECT node.nid AS nid, node.title AS node_title,   node_revisions.body AS node_revisions_body,<br>              node_revisions.format AS node_revisions_format FROM node node LEFT JOIN node_revisions node_revisions <br>
              ON node.vid =    node_revisions.vid where node.title like &#39;%a&#39;&quot;);    <br>        <br>     $block[&#39;subject&#39;] = &#39;Click to send request&#39;;<br>     $block[&#39;content&#39;] = $alphabetical_search_result;<br>
    return $block;<br>  }<br><br>}<br><br><br>