时间:2021-07-01 10:21:17 帮助过:29人阅读
$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程序设计有所帮助。