<br><br>Hi , <br><br><br>am displaying A to Z, in the verticle, <br><br>i have another block , when the user click the a or b or c, <br><br>i want to pass these query string as argument for the function ,<br><br>but when i click the a, it goes to pagenot found, why ?<br>
<br><br>i nothing we to do some stuff in the node or somewhere ,<br><br>Can u guess and tell me , what i have to do now,,<br><br><br><br>This is my block <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>
        for($i=65;$i&lt;=90;$i++){<br>              if($i==90){<br>              $show_pipe_line = &#39;&#39;;    <br>              }else{<br>              $show_pipe_line = &#39;|&#39;;    <br>              }<br>             $alphabet_link_as = chr($i).$show_pipe_line;<br>
             $abc= strtolower(chr($i));<br>             $show_alphabet .= &quot;&lt;a href=&#39;node/$abc&#39;&gt;&quot;.$alphabet_link_as.&quot;&lt;/a&gt;&quot;;<br>        }<br>     $block[&#39;subject&#39;] = &#39;Click to send request&#39;;<br>
     $block[&#39;content&#39;] = $show_alphabet;<br>    return $block;<br>  }<br><br>}<br><br><br><br>Am show the A to Z ,<br><br>When user hit the a , <br><br>Then i want to show all article which start from a character,<br>
<br>so i want to pass this a as argument for my another article title showing function, <br><br><br>Thanks<br><br><br>