This is my form1
<form name="form1" method="post" action="#">
<input id="date_input_2" type="text" name="emp_item_hawala_date" />
<input type="submit" value="search">
</form>
this is my form2 which I want its text input to just get automatic from form1 when ever I enter text to input (emp_item_hawala_date) from form1 the same input of form2 should take it's text too.
<form name="form2" method="post" action="#">
<input id="date_input_1" type="text" name="emp_item_hawala_date" />
<input type="submit" value="print">
</form>
Here on my form1 I want to put by selectively or input direct it should apear on my second form input by automatic.
is it possible?
regards