Dw 表單製做 與 dedecms 結合實現提交效果

Dw 表單製做 與 dedecms 結合實現提交效果

 

自定義表單的用處php

 

1.教育類網站的學員報名 html

 

2.企業網站的在線訂單 post

 

3.普通網頁上的一些和用戶交互的小功能網站

 

 

實現原理:首先添加表單:核心-頻道模型-自定義表單spa

 

 

 

 

 

 

 

 

 

 

  

DW表單製做:orm

插入---表單htm

表單---文本域blog

表單---文本域ip

保存爲:liuyan.php放在根目錄   用訪問 http://127.0.0.1:8011/liuyan.php  ci

 

 

 

 

 

 

 

發佈信息頁面右鍵查看源文件.html  而且保存爲html,留下以下有用代碼

 

1.表單開始引用部分:複製以下4行到liuyan.php開始位置

分析部分複製以下:/plus/diy.php爲接收頁面必定要複製,還要要保留原有的CSS,

<form action="/plus/diy.php" enctype="multipart/form-data" method="post">

 

以下直接複製便可:

<input type="hidden" name="action" value="post" />

<input type="hidden" name="diyid" value="1" />

<input type="hidden" name="do" value="2" />

 

2.修改liuyan.php下面的name,和以下一致

<table style="width:97%;" cellpadding="0" cellspacing="1">

<tr>

  <td align="right" valign="top">姓名:</td>

  <td><input type='text' name='xingming' id='xingming' style='width:250px'  class='intxt' value='' />

</td>

</tr>

<tr>

  <td align="right" valign="top">聯繫方式:</td>

  <td><input type='text' name='lianxi' id='lianxi' style='width:250px'  class='intxt' value='' />

</td>

</tr>

<tr>

  <td align="right" valign="top">詳細內容:</td>

  <td><textarea name='neirong' id='neirong' style='width:90%;height:80'></textarea>

</td>

</tr>

 

3.複製以下2input到提交按鈕input以前,

<input type="hidden" name="dede_fields" value="xingming,text;lianxi,text;neirong,multitext" />

<input type="hidden" name="dede_fieldshash" value="e54351bb71506095a29dc9066bc5a87f" /></table>

 

 

4.將以下class='coolbg'複製到liuyan.php對應的位置

<input type="submit" name="submit" value="提 交" class='coolbg' />

 <input type="reset" name="reset" value="重 置" class='coolbg' />

</div>

</form>

 

5.此時表單製做成功,提交後臺能夠看見

相關文章
相關標籤/搜索