私は以下のリンクをクリックすると次のページに移動するWebページを作成しようとしています
私の質問はpictuce以下に示すように、私は1ページ目から同じデータを2ページ目にあるテキストボックスに&表示にそれを取得する方法、ありますか?
これは
<div class="control-group">
<label for="proid" class="control-label">MSUL ID</label>
<div class="controls">
<input type="text" id="txtinput" name="txtinput"value="">
<select id="prodtype" name="prodtype"onchange="checknumber();">
<option selected >--Select Product Type--</option>
<option value="Main" >Main</option>
<option value="Sub">Sub</option>
</select>
</div>
<div class="controls" id="after" style="display : none">
<select id="cutprod" name="cutprod" class="input-xxlarge">
</select>
<input id="generatebtn" type="button" class="btn-primary btn-small" onclick="generateRpt();" value="Generate" ></div>
</div>
第二のページの図であり、これは、コントローラ
function index() {
$this -> smarty -> assign("page", "View Cutting Report Summary");
$this -> smarty -> assign("dataname", "Cutting Report Summary");
$this -> smarty -> assign("pagename", "sewcutrptsummary");
$this -> smarty -> assign("msg", "");
$this -> smarty -> assign("script", "Yes");
$idmsul = $this -> input -> get_post("pro");
$query = "Select idmsul from sindi_schedule where idmsul='{$idmsul}' group by idmsul";
$result = $this -> global_model -> query($query) -> result();
$data['idmsul'] = $result;
$this -> smarty -> view('sewcutrptsummary.tpl',$data);
}
誰もがこの問題で私を助けることはできますか?
あなたのご協力が大変ありがとうございます。
?その全体的に不明確 –
質問は、特に提供されたイメージを使って、実際にはかなり明確です。 –