亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Codeigniter檢測表單post數(shù)據(jù)的方法

 更新時(shí)間:2015年03月21日 16:38:19   作者:work24  
這篇文章主要介紹了Codeigniter檢測表單post數(shù)據(jù)的方法,實(shí)例分析了Codeigniter獲取及檢測post數(shù)據(jù)的技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了Codeigniter檢測表單post數(shù)據(jù)的方法。分享給大家供大家參考。具體如下:

$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 ("Please go back and fill in all of the fields. " ) ;
}

希望本文所述對大家基于Codeigniter的php程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評論