How to check email address or username is valid or exist through same post?
HTML
<form action="/index" method="post">
<input name="post" type="text" value="Username or Email" />
<input name="submit" name="send" value="Submit" />
</form>
PHP
public function index($post)
{
$results = $this->db->where('username', $post)
->where('email', $post)
->get('users');
if($results->num_rows() > 0)
{
//The user has an email or username
echo "valid";
} else {
echo "Invalid";
}
}