找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1447|回复: 0

[分享] 织梦自定义表单字段为必填项的教程

[复制链接]
发表于 2017-11-21 17:24:22 | 显示全部楼层 |阅读模式 来自 中国–河南–新乡
织梦自定义表单用的最多的就是制作留言板,报名等功能,但是添加的字段不填写就能提交,容易被恶意提交,为了防止这些,我们可以把这些字段选项设定为必填项。

方法如下:

1. 用php验证

在plus/diy.php的第 40行下加
  1. //增加必填字段判断
  2. if($required!=''){
  3. if(preg_match('/,/', $required))
  4.     {
  5.         $requireds = explode(',',$required);
  6.         foreach($requireds as $field){
  7.             if($field==''){
  8.                 showMsg('带*号的为必填内容,请正确填写', '-1');
  9.                 exit();
  10.             }
  11.         }
  12.     }else{
  13.         if($required==''){
  14.             showMsg('带*号的为必填内容,请正确填写', '-1');
  15.             exit();
  16.         }
  17.     }
  18. }
  19. //end
复制代码



2.在模版的表单里加<input type="hidden" name="required" value="name,**" />

value 就是必须字段,多个用“,”隔开。

参考案例分享:
<form action="/plus/diy.php" enctype="multipart/form-data" method="post">
<input type="hidden" name="required" value="name,qq" />
<input type="hidden" name="action" value="post" />
<input type="hidden" name="diyid" value="1" />
<input type="hidden" name="do" value="2" />
<table style="width:97%;" cellpadding="0" cellspacing="1">
<tr>
  <td align="right" valign="top">姓名:</td>
  <td><input type='text' name='name' id='name' style='width:250px'  class='intxt' value='' />
</td>
</tr>
<tr>
  <td align="right" valign="top">性别:</td>
  <td><select name='**' style='width:50px'><option value='男'>男</option>
<option value='女'>女</option>
</select>
</td>
</tr>
<tr>
  <td align="right" valign="top">电话:</td>
  <td><input type='text' name='tell' id='tell' style='width:250px'  class='intxt' value='' />
</td>
</tr>
<tr>
  <td align="right" valign="top">地址:</td>
  <td><input type='text' name='add' id='add' style='width:250px'  class='intxt' value='' />
</td>
</tr>
<tr>
  <td align="right" valign="top">备注内容:</td>
  <td><input type='text' name='con' id='con' style='width:250px; height:100px'  class='intxt' value='' />
</td>
</tr>
<input type="hidden" name="dede_fields" value="name2,text;**2,select;tell2,text;add,text;con2,text" />
<input type="hidden" name="dede_fieldshash" value="78764e448024ba3607705cbf961ebf3f" /></table>
<div align='center' style='height:30px;padding-top:10px; padding-left:130px'>
<input type="submit" name="submit" value="提 交" class='coolbg' />

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


发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;

如何回报帮助你解决问题的坛友,好办法就是点击帖子下方的评分按钮给对方加【金币】不会扣除自己的积分,做一个热心并受欢迎的人!

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则 需要先绑定手机号

关闭

站长推荐上一条 /1 下一条

QQ|侵权投诉|广告报价|手机版|小黑屋|西部数码代理|飘仙建站论坛 ( 豫ICP备2022021143号-1 )

GMT+8, 2024-11-3 01:35 , Processed in 0.040459 second(s), 9 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表