<form class="form-horizontal" enctype="multipart/form-data" method="post" action="store.php">
<div class="form-group">
<label class="col-sm-2 control-label">REGISTRATION DATE</label>
<div class="col-sm-8">
<input type="date" class="form-control1" name="reg_date" id="focusedinput" placeholder="Default Input">
</div>
<div class="col-sm-2">
<p class="help-block">text!</p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">REGISTRATION No.</label>
<div class="col-sm-8">
<input type="text" class="form-control1" name="reg_no" id="focusedinput" placeholder="Default Input">
</div>
<div class="col-sm-2">
<p class="help-block">text!</p>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-8">
<input type="SUBMIT" value="Next" class="form-control1">
</div>
</div>
</form>
這裏,在這段代碼中有更多的輸入類型,我只是跳過了這些。當我按下提交按鈕時,這會將我帶到'store.php'文件,信息將存儲在數據庫中。並將我重定向到另一個表單,並且還有一些輸入類型,但我需要像當前表單中以前表單中的「reg_no」之類的信息。我怎樣才能得到這個?將值從一個表單傳遞到PHP中的另一個重定向表單
注意:我將第一種形式的輸入存儲在數據庫表中。然後重定向到其他表單,並且此表單的操作是另一個PHP文件,如「store2.php」,它也用於將信息存儲到其他數據庫表中。
你爲什麼不乾脆捕捉$ _ POST [」 reg_no']從store.php中的第一個表單獲得,並在下一個表單中包含reg_no的輸入元素?! – user3526204
好的..如果你正在重定向到另一個頁面,然後將該變量作爲SESSION變量傳遞...並以下面的形式捕獲它 – user3526204
感謝@ user3526204,我在使用$ _SESSION之前嘗試了它,但沒有奏效。現在它工作很好。可能是我在某個時間點錯了,但是謝謝你提醒我再想一想$ _SESSION ... – RokiDGupta