ppypp伦理天堂,91手机在线视频,免费在线观看黄色毛片,夜夜穞天天穞狠狠穞AV美女按摩

聯系官方銷售客服

1835022288

028-61286886

投訴 已解決 如何實現用戶在前臺通過身份證號 查詢報名后的審核狀態 3 0
litom(不懂技術) VIP月付 OEM版權 2020-05-04 22:47:02 私信
迅睿CMS版本:4.3.3 懸賞:3元 #表單權限 #表單審核

用網站表單做了一個在線報名表單,報名后,后臺審核。

如何實現用戶在前臺通過身份證號查詢報名后的審核狀態?

求助。

解決方案
  • 需要使用form標簽來進行模糊匹配,從URL接受參數傳遞進去,思路就是這樣

    參考文檔:《網站表單列表調用》

  • 我最喜歡懸賞(設置懸賞)貼了

    比如你的網站表單叫 aaaa

    訪問網站列表的地址是:/index.php?s=form&c=aaaaa

    <form class="search-form" action="/index.php" method="get">
        <input type="hidden" name="s" value="form">
        <input type="hidden" name="c" value="aaaaaa">
        <input type="text" placeholder="搜索內容..." name="kw">
        <button class="btn default" type="submit"> 搜索 </button>
    </form>

    把默認模板:template/pc/default/home/form_list.html,復制成:template/pc/default/home/aaaaa_list.html

    再改aaaaa_list.html里面 的代碼

    {php $where = urlencode('字段名 LIKE "'.$_GET['kw'].'"');}
    {form form=$form_table where=$where page=1 urlrule=$urlrule pagesize=5}
    <li>
        <a href="{Router::form_show_url($form_table, $t.id)}" class="title">{dr_strcut($t.title, 60)}</a>
        <span>{$t.inputtime}</span>
    </li>
    {/form}
    個人開發者,熟悉CodeIgniter、Laravel、Yii、Thinkphp,只想靠懸賞賺錢買一個SVIP
  • @litom:滿意答案。