SartajPHP Select Controlに問題があります。データベースからデータを取得できませんでした。私が新しいレコードを編集または挿入する実際にこの従業員のフォーム。私は、パネル、タブ、フォームコントロールを使用しました。すべてがうまくいっていますが、私は従業員のステータスを選択する必要がある選択された分野です。私はデータベースから従業員の現在のステータスを取得しようとしています。ので、一時ファイルをレンダリングしようとします。それはSelect Controlによって生成されたSQLクエリエラーを返します。私はここで何をすべきか分からない。ここでの一時ファイルの私のコードは、それが私のSQL構文エラーを与える。..MySQLテーブルからSartajPHPフレームワークでSelect Input Field Controlにデータを入力する方法
<panel id="pnlEdit" funsetLabel="Edit Employee" runat="server" path="controls/bootstrap3/EditPanel.php">
<div id="tab1" runat="server" path="controls/bootstrap3/Tabs.php" >
<tabhead runas="ul" class="nav nav-tabs">
<li class=""><a data-toggle="tab" href="#sectionA">GENERAL</a></li>
<li class=""><a data-toggle="tab" href="#sectionB">DEPARTMENTS</a></li>
<li class=""><a data-toggle="tab" href="#sectionC">WORK LIST</a></li>
</tabhead>
<tabcontent runas="div" class="tab-content">
<sectionA runas="div" id="sectionA" class="tab-pane fade">
<form id="form2" class="form-horizontal form-striped" runat="server" funsetAJAX="" action="##{ getAppPath('user'); }#">
<label id="lbl1" path="controls/bootstrap3/HLabel.php" fupsetLabel="First Name,|txtfname" runat="server" funsetSize="col-md-4,|col-md-8">
<input id="txtfname" runat="server" type="text" dfield="txtfname" class="form-control" funsetForm="form2" funsetMsgName="First Name" funsetMaxLen="40" funsetRequired="" />
</label>
<label id="lbl1" fupsetLabel="Last Name,|txtlname" runat="server" >
<input id="txtlname" runat="server" type="text" dfield="txtlname" class="form-control" funsetForm="form2" funsetMsgName="Last Name" funsetMaxLen="40" funsetRequired="" />
</label>
<label id="lbl1" fupsetLabel="Email,|emlemail" runat="server" >
<input id="emlemail" runat="server" type="text" dfield="emlemail" class="form-control" funsetForm="form2" funsetMsgName="Email" funsetMaxLen="100" funsetEmail="" />
</label>
<label id="lbl1" fupsetLabel="Pin,|numpin" runat="server" >
<input id="numpin" runat="server" type="text" dfield="numpin" class="form-control" funsetForm="form2" funsetMsgName="Pin" funsetMaxLen="11" funsetNumeric="" />
</label>
<label id="lbl1" fupsetLabel="Current Status,|sltcurrent_status" runat="server" >
<select id="sltcurrent_status" runat="server" dfield="sltcurrent_status" class="form-control" funsetForm="form2" funsetMsgName="Current Status" funsetOptionsFromTable="astatus,atype,where id='##{$page->evtp}#'" ></select>
</label>
<label id="lbl1" fupsetLabel="Allow Change Team,|chkCanchangeteams" runat="server" >
<input id="chkCanchangeteams" type="checkbox" runat="server" dfield="chkCanchangeteams" class="form-control" funsetForm="form2" funsetMsgName="Allow Change Team" />
</label>
<div class="align-center"><br /><input type="submit" value="Save" class="btn btn-primary btn-small" />
<input type="reset" value="New" class="btn btn-primary btn-small" onclick="setFormAsNew('form2');" />
<input id="btnDel" runat="server" type="button" value="Delete" onclick="confirmDel_showall('##{ getEventPath('delete',$page->evtp,'user','','',true); }#');" class="btn btn-danger btn-small" />
</div>
</form>
</sectionA>
<sectionB runas="div" id="sectionB" class="tab-pane fade">
........
.....
</sectionB>
</tabcontent>
</div>
です。
をチェック詳細情報については
...
このコードで変更 ...少なくともテーブル名を与える必要があります構文エラー。 – RiggsFollyエラーの内容と、該当する場合は予期せぬ出力を記載してください。 [Stackoverflowで質問する方法](https://stackoverflow.com/help/how-to-ask) –