PHP Codeigniter检测表单post数据示例

内容摘要
这篇文章主要为大家详细介绍了PHP Codeigniter检测表单post数据示例,具有一定的参考价值,可以用来参考一下。

对PHP Codeigniter检测表单post上来的数据对此感兴趣的朋友,看看
文章正文

这篇文章主要为大家详细介绍了PHP Codeigniter检测表单post数据示例,具有一定的参考价值,可以用来参考一下。

对PHP Codeigniter检测表单post上来的数据对此感兴趣的朋友,看看idc笔记做的技术笔记!

/**
 * PHP Codeigniter检测表单post上来的数据
 *
 * @param 
 * @arrange 512-笔记网: 512Pic.com
 **/
$name = $this->input->post(' name' ) ;
$email = $this- >input->post( ' email' ) ;
$subj ect = $this->input->post( ' subject' ) ;
$message = $this->input->post( ' message' ) ;
if( empty($name) OR empty( $email) OR empty($subject) OR empty($message) )
{
  show_404 ("The form submitted left fields blank, all fields are required. Please go back and fill in all of the fields. " ) ;
}
/***   来自php教程(www.idcnote.com)   ***/

注:关于PHP Codeigniter检测表单post数据示例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!