在前臺或會員中心獲取表單嚮導裏提交的數據

v9_form_consult爲你的表單數據表,`consultman`,`question`,`username`,`datetime` 爲你表單內的字段,page="$_GET"爲分頁代碼,具體調用代碼以下:
      <div class="box">
                        <h5>常見問題</h5>
        {pc:get sql="SELECT `consultman`,`question`,`username`,`datetime` FROM `v9_form_tlj` ORDER BY `datetime`" num="10" page="$_GET"}php

        <table width="100%" cellspacing="1"  class="table-my">
              <thead>
                  <tr>
                  <th width="25%"><strong>問題名字</strong></th>
                  <th width="23%"><strong>訂單號碼</strong></th>
                  <th width="12%"><strong>報名會員</strong></th>
                                 <th width="20%"><strong>目標商家</strong></th>
                  <th width="20%"><strong>報名時間</strong></th>
                  </tr>
              </thead>
              <tbody>
                  {loop $data $r}
                  <tr>
                  <td width="25%" align="center">{$r[consultman]}</td>
                  <td width="23%" align="center">{$r[question]}</td>
                  <td width="12%" align="center">{$r[username]}</td>
                     <td width="20%" align="center">{date('Y-m-d H:i:s',$r[datetime])}</td>
                  </tr>
                  {/loop}
              </tbody>
        </table>
        {/pc}
                   <div id="pages" class="text-c">{$pages}</div>
      </div>sql

 

 

而phpcms v9的會員模板在menber的模塊下,要添加會員申請的記錄,就必須調取模板,每個模板由控制器裏(moules/content.php)不一樣的方法決定,因此要添加方法和模板,在方法裏面鏈接數據庫,查詢表單嚮導對應的數據表。數據庫

再在模板裏遍歷出數據,使用info[表單嚮導字段名],就是申報的數據了。oop

相關文章
相關標籤/搜索