<p>Hi All<br>I have a form. Form contains a text field and a search button.</p>
<p>When user clicks search button, I redirect to a page  &quot;resume_search/skill_based_search&quot;</p>
<p>Corresponding hook_form code.</p>
<p> $form[&#39;search&#39;][&#39;skill&#39;] = array(<br> &#39;#type&#39; =&gt; &#39;textfield&#39;,<br> &#39;#title&#39; =&gt; t(&#39;Enter skill set&#39;),<br> &#39;#required&#39; =&gt; FALSE,<br> &#39;#description&#39; =&gt; &quot;Example:  PHP, HTML, MySQL, VoIP, SNMP&quot;,<br>
 &#39;#size&#39; =&gt; 50,<br> &#39;#maxlength&#39; =&gt; 256,<br> );</p>
<p> $form[&#39;submit&#39;] = array(<br> &#39;#type&#39; =&gt; &#39;submit&#39;,<br> &#39;#value&#39; =&gt; &#39;Search&#39;,<br> &#39;#submit&#39; =&gt; array(&#39;resume_search_submit&#39;),<br> );</p>
<p>Corresponding hook_menu() code</p>
<p> $items[&#39;resume_search/skill_based_search&#39;] = array(<br> &#39;title&#39; =&gt; t(&#39;Search Result&#39;),<br> &#39;page arguments&#39; =&gt; array(1),<br> &#39;page callback&#39; =&gt; &#39;resume_search_skill_based_search&#39;,<br>
 &#39;access arguments&#39; =&gt; array(&#39;access content&#39;),<br> &#39;type&#39; =&gt; MENU_CALLBACK,<br> );</p>
<p> function resume_search_submit($form, &amp;$form_state) <br> {<br>  $form_state[&#39;redirect&#39;] = &#39;resume_search/skill_based_search&#39;;<br> }</p>
<p>So from above code, when user clicks search button, resume_search_skill_based_search() is called and the page &quot;<a href="http://localhost/livejobs1/?q=resume_search/skill_based_search">http://localhost/livejobs1/?q=resume_search/skill_based_search</a>&quot; comes up.<br>
I want inside resume_search_skill_based_search(), the text entered by user in search textfield should be available.</p>
<p>I know, we need to pass the aguguments, but not clear how do I do this. Can somebody give me a high level input how data entered in a textfield is available in another page.</p>
<p>Best Regards<br>Austin </p>
<p> </p>