CodeIgniter Forums
Form Validation error? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Form Validation error? (/showthread.php?tid=58208)



Form Validation error? - El Forum - 05-23-2013

[eluser]whygod[/eluser]
Why is it when I add is_unique,
Code:
$this->form_validation->set_rules('title', 'Title', 'required|is_unique');

I got this error,
Code:
A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: libraries/Form_validation.php

Line Number: 953

What could be the problem?

Thanks in advanced.


Form Validation error? - El Forum - 05-23-2013

[eluser]Herlevsen[/eluser]
You have not specified a table and a column.

Code:
$this->form_validation->set_rules('title', 'Title', 'required|is_unique[table.column]');

I think maybe, it does not do, what you think it does Wink