i want to get value of input of my form via $_post in my insert page but my problem is that i get error massage:undefined index:track_code and i cant get value of it.the names is same what is problem? this is my problem why stackoverflow want more detail. this is all detail
<form action="insert.php" method="post">
<input name="track_code" type="text" class="tiny-size" value="<?php echo $track_code_rnd ; ?>" style="width: auto;height: auto" disabled />
</form>
<form action="insert.php" method="post" class="form-horizontal form-checkout">
 <div class="control-group">
  <label class="control-label" for="firstName">نام<span class="red-clr bold">*</span></label>
  <div class="controls">
  <input name="first_name" type="text" id="firstName" class="span4" >
  </div>
  </div>
  <div class="control-group">
  <label class="control-label" for="lastName">نام خانوادگی<span class="red-clr bold">*</span></label>
  <div class="controls">
  <input name="last_name" type="text" id="lastName" class="span4">
  </div>
  </div>
  <input name="submit" type="submit" class="btn btn-success" value="خرید"     style="width: 66px"/>
  </form>
  <form action="insert.php" method="post">
  <input name="track_code" type="text" class="tiny-size" value="<?php echo $track_code_rnd ; ?>" style="width: auto;height: auto" disabled />
  </form>
  <?php
  $track_code = $_POST['track_code'];
  ?>
 
     
     
    