Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to figure out why I'm getting a cannot reassign $this error message for the public function isUsernameAvailable($this->input->post('username')) line. I've looked over my code and can't locate the cause of why I can't do this. What the function is used for is a post jquery function with json sent to php.

public function isUsernameAvailable($username)
{
    if ($this->usersmodel->isUsernameAvailable($username))
    {
        echo '{"username":"found"}';
    }
    else
    {
        echo '{"username":"notfound"}';
    }        
}

jQuery

$('#username').blur(function(){
    $.post('register/isUsernameAvailable', {"username":$(this).val()}, function(data){if(data.username == "found"){alert('username already in use');}}, 'json');
});

Any ideas?

UPDATE :

I"m trying to find out if this is really a PHP issue or jQuery issue.

After it does the POST request it sends this as a parameter:

username testusername

In the response I get this:

A PHP Error was encountered

Severity: Warning

Message: Missing argument 1 for Register::isUsernameAvailable()

Filename: controllers/register.php

Line Number: 118

A PHP Error was encountered

Severity: Notice

Message: Undefined variable: username

Filename: controllers/register.php

Line Number: 120

{"username":"notfound"}

share|improve this question

1 Answer

up vote 6 down vote accepted

$this can not be overwritten, it is the reference to the object you are in. If you could overwrite it you would lose the object.

In your code you have the line

public function isUsernameAvailable($this->input->post('username'))

this would cause the functions isUsernameAvailable first parameter be name $this->input->post('username'). That would cause that $this in the scope of the function would be overwritten.

share|improve this answer
1  
I'm still confused on what that has to do with my function. – Jeff Davidson Jun 2 '12 at 16:21
After reading your actual code (honestly just post code that is necessary) if saw that you are using $this is the name of a function parameter. That can not work. – clentfort Jun 2 '12 at 16:23
What should I do to correct this? – Jeff Davidson Jun 2 '12 at 16:25
Change the function definition to isUsernameAvaialble( $username) and pass $this->input->post('username') to the function when you call it. – nickb Jun 2 '12 at 16:26
use another variable instead – Neograph734 Jun 2 '12 at 16:26
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.