php简单数据保存程序实例
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-25 14:11:19 浏览: 评论:0
- <form id="form1" name="form1" method="post" action="">
- <label>
- <input type="text" name="cname" />
- </label>
- <p>
- <label>
- <input type="text" name="caddress" />
- </label>
- <label>
- <input type="text" name="ctel" />
- </label>
- <label>
- <input type="text" name="cfix" />
- </label>
- <label>
- <input type="text" name="cmail" />
- </label>
- </p>
- </form>
- <?php
- include(dirname(__FILE__).'./inc/gg_function.php');
- if( $_POST)
- {
- $_cname = Get_value('cname',1);
- $_address = Get_value('caddress',1);
- $_tel = Get_value('ctel',1);
- $_fix = Get_value('cfix',1);
- $_mail = Get_value('cmail',1);
- if( emptyempty($_cname) || strlen( $_cname )>200 )
- {
- ShowMsg('请输入公司名称!');
- }
- elseif( emptyempty( $_address ) || strlen( $_address )>200 )
- {
- ShowMsg('请输入公司地址!');
- }
- elseif( emptyempty( $_tel ) || strlen($_tel)>12 )
- {
- ShowMsg('请输入正确的电话号码');
- }
- elseif( emptyempty($_fix) || strlen( $_fix )>20 )
- {
- ShowMsg('输入传真号');
- }
- elseif( emptyempty( $_mail ) || strlen( $_mail )>254 )
- {
- ShowMsg('输入正确的邮件地址');
- }
- else{
- $_sql = "Insert into gx_coo(c_name,c_address,c_tel,c_fix,c_maile)value('$_cname','$_address','$_tel','$_fix','$_mail')";
- if( mysql_query( $_sql ) )
- {
- ShowMsg('信息保存成功!');
- }//开源代码phpfensi.com
- else
- {
- ShowMsg('操作失败请重试一次!');
- }
- }
- }
- ?>
Tags: php数据保存 php程序实例
- 上一篇:php 过滤特殊字符及sql防注入代码
- 下一篇:php非法字符过滤
相关文章
- ·php mysql数据保存到数据库实现方法(2014-09-11)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)