I have a textarea and a button where i send the text via ajax to the database to post it.

However when i post non-latin characters... it wont get them and it returns blank... if the text is in latin characters it works fine...

my js code

            $.ajax({
                type: "POST",
                url: www+"controller/postText",
                dataType: 'json',
                data: {
                    input       : input.val(),
                },
                success: function(data) {
                    return data;
                }
            });

my php code

public function postText(){

    $input = isset($_POST["input"]) ? trim($_POST["input"]) : "";

    echo $input;
    return false;
}
link|improve this question

63% accept rate
feedback

1 Answer

Try accessing your input using $this->input->post('input')

Also, trim might cause trouble with some UTF8 characters. Check that as well.

link|improve this answer
this->input->post() doesnt seem to work... doesnt return nothing – fxuser Feb 10 at 11:02
Try monitoring your form with firebug, is the field value being submitted correctly? – chaft Feb 10 at 11:05
yes the value is being submitted correctly... however in php it cant be assigned in the variable – fxuser Feb 10 at 11:16
in your config file is $config['global_xss_filtering'] set to TRUE? try setting it to FALSE – chaft Feb 10 at 12:34
its set to FALSE by default – fxuser Feb 10 at 13:00
feedback

Your Answer

 
or
required, but never shown

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