Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9209921
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T00:57:30+00:00 2026-06-18T00:57:30+00:00

In the Codeigniter Framework, I can validate an Unique field in the MYSQL Database

  • 0

In the Codeigniter Framework, I can validate an Unique field in the MYSQL Database using the “Form Validation Class”. Exemple:

$this->form_validation->set_rules('form_field', 'form_label', 'is_unique[table.field]');

Work perfectly, but, I need validate a field from a table with 2 index. Exemple:

UNIQUE INDEX `id_aluno` (`id_aluno`, `ano`),

The Codeigniter Framework can do it natively?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T00:57:31+00:00Added an answer on June 18, 2026 at 12:57 am

    I don’t think that CI has built-in case for combined PK but I would use callback_ like this: but note that you have to send the second PK as extra and the rule should be applied on the first $PK see callbacks for more info about that

    $this->form_validation->set_rules('form_field', 'form_label', 'callback_combpk[$pk2]');
        public function combpk($pk1, $pk2)
            {
                   $this->db->where('field1', $pk1);
                   $this->db->where('field2', $pk2);
                   $result = $this->db->get('table');
                   if($result->num_rows() > 0)
                   {
                      $this->form_validation->set_message('combpk','something'); // set your message
                      return false;
                   }
                   else{ return true;}
    
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using codeigniter framework and I'm getting this error when I've submitted my form:
I have the following php code using the codeigniter framework $this->form_validation->set_rules('money', 'Money', 'integer|required|xss_clean'); It
I have this code here in PHP using Codeigniter framework, I can't seem to
I am using Codeigniter framework and I have a form with input fields. When
I created a form in CodeIgniter framework that successfully uploads an image using the
This article explains how to use Zend in Codeigniter. http://www.beyondcoding.com/2008/02/21/using-zend-framework-with-codeigniter/ I am using XAMPP
I am using codeigniter framework for one of my PHP project. In form I
There is a class like this in codeigniter framework ( I edited it to
I have been working an application using PHP & MySql on Codeigniter framework. It
I made one website xyz.com using php codeigniter framework. This website has modules, so

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.