Welcome Guest, Not a member yet? Register   Sign In
Trouble while Integrating Query in CI
#7

[eluser]Mizanur Islam Laskar[/eluser]
Well, don't have any idea where onChange or onBlur is triggered in my view page. Can you please give me a solution with an example of how can I get rid of this?...I'm really getting fustrated. Plz go to http://www.simplypost.ca/register_step1.php and use <b>[email protected]</b> or <b>[email protected]</b> and also use both correct and incorrect disits in captcha, then play with TAB...thats the thing I want, which was done from scratch, other than using any framework.

Besides, according to your last suggestions, I created the following MVC, but stuck in the same pitfall:

Model File(check_model.php):
Code:
&lt;?php

    class Check_model extends Model
        {
        
         function Check_model()
             {
             parent::Model();
             }
            
         function check_email($email)
             {
             $valid = 0;
             $this->load->database();
             $query=$this->db->getwhere('user_profile',array('user_email'=>$email));
             $valid += $query->num_rows();
             return $valid;
             }              
        
         }

?&gt;

Portion of my Controller(SignUp.php):
Code:
&lt;?php

    class SignUp extends Controller
        {
        
          function SignUp()
              {
             parent::Controller();
             $this->load->helper('url');
             }
                  ......
            
          function confirm_email( )
              {
             $email = $_GET['email'];
             $this->load->model('check_model');
             $valid_email = $this->check_model->check_email($email);
             return $valid_email;
             }              
        
         }

?&gt;

Portion of my View File(SignUp.php):
Code:
......
email: { required: true, email: true, remote: "http://localhost/projects/inbook/index.php/SignUp/confirm_email" },
......


Messages In This Thread
Trouble while Integrating Query in CI - by El Forum - 06-30-2008, 12:28 AM
Trouble while Integrating Query in CI - by El Forum - 06-30-2008, 12:48 AM
Trouble while Integrating Query in CI - by El Forum - 06-30-2008, 01:13 AM
Trouble while Integrating Query in CI - by El Forum - 06-30-2008, 02:04 AM
Trouble while Integrating Query in CI - by El Forum - 06-30-2008, 03:16 AM
Trouble while Integrating Query in CI - by El Forum - 06-30-2008, 03:32 AM
Trouble while Integrating Query in CI - by El Forum - 06-30-2008, 11:54 AM
Trouble while Integrating Query in CI - by El Forum - 06-30-2008, 12:45 PM
Trouble while Integrating Query in CI - by El Forum - 06-30-2008, 02:01 PM
Trouble while Integrating Query in CI - by El Forum - 06-30-2008, 02:14 PM
Trouble while Integrating Query in CI - by El Forum - 06-30-2008, 02:23 PM
Trouble while Integrating Query in CI - by El Forum - 06-30-2008, 02:55 PM



Theme © iAndrew 2016 - Forum software by © MyBB