PHP Codeigniter检测表单post上来的数据
$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. " ) ; }