SoFunction
Updated on 2025-04-04

Method of Codeigniter to detect form post data

This article describes the method of Codeigniter detecting form post data. Share it for your reference. The details are as follows:

$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. " ) ;
}

I hope that the description in this article will be helpful to everyone's PHP programming based on Codeigniter.