This is my Html Code :
<input type="text" id="state" name="state" autocomplete="off">
<input type="text" id="district" name="district" autocomplete="off">
<input name="Submit" type="submit" value="Submit">
and this is my php code in server side :
if(isset($_POST['Submit'])){
$state = $_POST['state'];
//what we have to write here to assign this value to 2nd textbox.
}
Please help me to solve this.....