Tagged Questions
0
votes
2answers
32 views
Extending Validation Library - CI2
I need a to set up a validation for student ID's and the CI native library is not cutting it, so I extended. I however am having an issue getting it work, and I don't quite know where I am goofing up. ...
0
votes
1answer
26 views
Update database with populated Form using Codeigniter
I managed to retrieve user's data from database and populate a form for future updates. With my view in place and data loaded on the fields, I have an update button that calls my controller for ...
0
votes
1answer
32 views
Why `set_radio` doesn't work when “form_validation” is included?
I am calling a view
function index() {
$this->load->helper("form");
$this->load->library("form_validation");
$this->load->view("index");
}
And then I have
<?php ...
0
votes
0answers
36 views
Validate webservice parameters
I'm quite new to Codeigniter so kindly help me through..
I'm writing a RESTful web service with Codeigniter - is there a way to validate the parameters I get in the 'POST' request's json?
By ...
0
votes
1answer
24 views
Validating Data for an Existing Record in Codeigniter
I have encountered an issue on which I haven't found much documentation online. I'm hopeful the SO community will have some advice.
I am currently trying to build a Profile Update page, which doesn't ...
-1
votes
1answer
38 views
CodeiIgniter: manually set per-field messages [duplicate]
I'm using CodeIgniter's form validation with its per-field rules, but after the validation successfully runs in some circumstances, I want to manually add a per-field error message and re-display the ...
0
votes
0answers
50 views
Use codeigniter Form validation lib. to validate arrays not from post
Might be a duplicate. but i couldnt find anything on google so here we Go.
i have a form that submit data. this data is further process and split it into variables.
example
My form post <input ...
0
votes
2answers
113 views
CodeIgniter form validation, re-populating dynamically added fields
I've got a form like this:
<form action="" method="post">
<input type="text" name="name[]">
<input type="text" name="name[]">
</form>
<button id="add">Add extra ...
0
votes
1answer
59 views
How to make codeigniter sticky form when error comes from upload file field
I have a form that allows user to upload multiple files. Additionaly user have to fill other input text fields like address, email etc.
I don't know how to make form sticky if error comes from file ...
-1
votes
1answer
45 views
Codeigniter form_validation not working
I have used codeigniter in the past but I am building a social network and I am working on the registration. I have autoloaded the form and form validation helpers. I have a form going to my user ...
2
votes
2answers
184 views
There is no error message when callback function runs in codeigniter form validation
Sorry for my bad english,
I'm creating a form that takes some values specifying reporting options in my codeigniter project. I want to show error messages created in my callback functions. I have 3 ...
0
votes
2answers
50 views
codeigniter callback from private methods not working
I doing form validation in CodeIgniter using Form Validation Library and my custom callbacks.
public function insert_user()
{
if($this->input->post('submit')) {
// load form ...
0
votes
1answer
102 views
Issue with CodeIgniter Form Validation
As usually, I set the rules for form validation, and if they don't pass I use $this->load->view() and load the form again.
Everything works fine with Firefox and Opera. But in all others ...
0
votes
0answers
43 views
Codeigniter 'Saving Sets of Validation Rules to a Config File'
I have studied 'http://ellislab.com/codeigniter/user-guide/libraries/form_validation.html#overview'.
I've tried to 'export' my set of rules to form_validation.php in application/config/ folder and it ...
0
votes
1answer
37 views
Codeigniter - edit form (repopulating) with edit_unique
It seems that the edit_unique function, which is desribed here - Validating Uniqueness In CodeIgniter When Updating A Record, kills the set_value function.
All works fine, which something like ...
0
votes
1answer
90 views
Is there a way to mingle validations in jQuery and CodeIgniter
If we want to include jQuery Validation plugin as well as code igniter form_validation class at once we have to define the validation rules in both jQuery validation script as well as in CodeIgniter ...
-2
votes
1answer
46 views
Codeignitor dynamic page loses content after validation [closed]
I have a dynamic page, which is being passed a lot of different variables that set up the page and display data/content.
The page in question is also a large form, which I in turn use codeigniter to ...
0
votes
1answer
47 views
Codeigniter Form Validation: Where to set rules?
I'm trying to achieve the "skinny controller", "fat view" and "fat model" structure. However, I am constantly obstructed by the form_validation library.
If that controller deals with a form that has ...
0
votes
0answers
111 views
CodeIgniter form validation always return false
I've been scouring the webs and potching with my code for hours now and can't seem to figure out why this isn't working.
I have a template library which scans a template.html for {@tags} and then ...
0
votes
2answers
47 views
Using strip_tags for form validation with allowable_tags
It appears I can use PHP's strip_tags function within Codeigniter's form validation like this:
$this->form_validation->set_rules('description', 'Description',
...
1
vote
2answers
42 views
Codeigniter re-validate form
I work with codeigniter for a couple of monts and now I have faced some problem.
I have a simple form with several input fields.
Lets say Name, address, phone, phone network provider.
So I set ...
0
votes
1answer
131 views
Setting form validation rules in CodeIgniter
i have these issue where i want to set a rules on three input forms of type "text", my rule is that at least one of these three has values (either of the three), i have no idea how to set them in CI, ...
0
votes
0answers
54 views
Using Form Validation with Wiredesignz HMVC
I am trying to make a login widget with wiredesignz HMVC and codeigniter.
I am trying to use form validation library to validate my form.
Here's my controller
class Login extends MX_Controller{
...
0
votes
1answer
39 views
Codeigniter callback on empty fields?
I'm having problems with callback on empty fields.
For some reason i need to compare value of field with some other parameters and to make it "required" only if some other conditions are fulfilled ...
0
votes
1answer
109 views
CodeIgniter custom validation errors for each rule per each field
I'm using CodeIngiter 2.1 and I wanna define custom validation errors for each rule per each field. The fields are as follows.
array(
'field' => 'firstname',
'rules' => 'required',
'error' ...
0
votes
2answers
126 views
CodeIgniter custom validate function not working
I am using CodeIgniter 2.3.1 and created a form_validation.php file in config and the content is as below.
<?php
$config = array(
array(
'field' => 'firstname',
'label' => 'First ...
0
votes
0answers
144 views
CodeIgniter relationship between Form Validation library and Form helper on set_value function
CodeIgniter Version : 2.1.3
In one line, my question is,
Why does Form helper's set_value() function call Form validation library's set_value() when there is validation rules on a field?
While ...
0
votes
2answers
147 views
I'm trying to extend the CodeIgniter Form Validation library
This is my custom validation function. It uses geocoding from a Google Maps CodeIgniter library to check if a location exists.
public function address_check($str)
{
...
0
votes
2answers
405 views
codeigniter form validation for dynamic form input names
I have a codeigniter app. My view uses the database row ID to append to the input name to get a unique ID. this allows me to use all inputs in my form action, which is update.
my View syntax:
...
0
votes
1answer
147 views
Codeigniter form validation, custom check doesn't work if the field is not required
Gah.. I have spent way to long on this, but I believe I have found the problem.
Essentially I have a hidden field which is populated when a user clicks on an image.
It is required that the user has ...
0
votes
0answers
101 views
Codeigniter retaining id in Edit form after validation
I am using same form in view for Edit and Add record in codeigniter view. On adding a new record side, everything is fine.
The problem is with Edit side. Below is my view file.
Main problem is with ...
0
votes
2answers
80 views
Change input element class on form_error?
So, i would like to change the style on a input element when i get a form_error on that element.
In my controller, i have all the form_validation rules, and every inputelement attributes
if ...
0
votes
1answer
147 views
CodeIgniter validation errors to Ajax print inline
I am sending dynamically created form fields to CodeIgniter via ajax.
<div class="form-element">
<input type="radio" id="delete-radio[1]" name="delete-radio[1]" value="1">
...
0
votes
0answers
491 views
twitter Bootstrap modal form validation error in codeigniter
I am trying to validate the form in loaded in twitter bootstrap modal , it is working fine upto validating and once I click save changes, it is navigating to the save function with the following ...
0
votes
2answers
282 views
Form validation for multiple text input Codeigniter
Array values in form are always a problem for form validation in CI. Now I've to input multiple values and those array values are to be stored in DB. Now the user can keep some fields blanks by ...
0
votes
2answers
100 views
Codeigniter form validation rules - required/min_length
If i set the rule for a field as min_length[3], but no value for the field is passed as it is not a required field, would it throw me an error?
FOr eg:
array(
'field' => 'first_name',
'label' ...
0
votes
0answers
74 views
CodeIgniter validate uniqueness of multiple columns?
That is, without direct handling database errors when used composite unique index (if ($this->db->_error_number() == <error number>) {}).
0
votes
2answers
99 views
CodeIgniter set_message()
When I am trying to set the custom message for an error under from_validation library in CodeIgniter using the following statement..
$this->form_validation->set_message("is_unique", "%s already ...
0
votes
1answer
112 views
accept only english character in form validation in codeigniter
I want to accept only English character in a text box form validation in codeigniter.
Is there any built form validation method for this or should I use my own validation function for implementing ...
0
votes
1answer
110 views
Codeigniter - validation rules for every field in form
I'm new to Codeigniter and found my first trouble when validating form. There's validation form library that helps to do it, and it has function to set rules, for example:
...
3
votes
2answers
184 views
Validation UNIQUE field in Codeigniter with 2 index
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', ...
1
vote
2answers
64 views
Custom Form_validation library not working
I made a custom_form_validation.php file in application\libraries which contains:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Custom_form_validation ...
1
vote
1answer
167 views
Dynamically added forms JQuery array to PHP (CodeIgniter) and back (with errors)
I have a form that has its fields dynamically added as such:
function addFieldRow() {
$('.form-container').append('
<div><input type="text" name="name[1]"></div>
...
0
votes
2answers
183 views
2 date input validation php with condition
i want to validate 2 date input in codeigniter, with the conditions, if the end date is greater than the start date, will appear warning [javascript warning or something] or data can't be input
my ...
3
votes
3answers
147 views
How to do a negative form validation in codeigniter?
is_unique is the form validation which not allow the value exist in the database.
But, can I do the opposite one? for example, I would like to need the value which is exist
in the database, so, I ...
0
votes
1answer
226 views
Codeigniter Form Validation errors with Wrapper
I have built a Login form under PHP Codeigniter framework and its validation rules are set.
The rules are working fine, but what I want to achieve is something different.
The login form has Username ...
0
votes
3answers
149 views
CodeIgniter form validation optional based on value
I'm setting up a form with CI and I'm using the form validation to help me with this.
At the moment I have different rules setup, like
$this->form_validation->set_rules('first_name', 'First ...
0
votes
1answer
45 views
How do I repopulate fields BEFORE validation is passed?
The fields I am making required to fill out, should repopulate the correctly filled out fields, while NOT submitting the form and posing errors for the incorrectly filled out fields. What is the best ...
0
votes
1answer
28 views
Same form to includ new client and edit existing client. How to use “set value”?
I'm using same form to new client and edit client in Code Igniter. Sometimes I'll include new client so the field must be empty. However, sometimes I'll edit a client and I must put respect value to a ...
1
vote
1answer
105 views
custom config file not working with form validation
i've set the validation rules in application/config/validation_rules.php and it looks like this
(short version)
$config = array(
'member/register' => array(
'field' => ...



