Welcome Guest, Not a member yet? Register   Sign In
Codeigniter's active record ignoring everything after “/”
#1
Sad 

issue

User inputs data like a/b

code we use to save the data

PHP Code:
<?php
    $text 
$this->input->post('user_input');
 
   $data = array('text'=>$text);
 
   $this->db->insert('table_name',$data);
?>

problem

data which is saved in the database is a/ nothing after / data after / is not saved in the db

note

db column size is not any issue since it is varchar and size 10
Reply
#2

I' am running CI 3.1 with Query Builder and it works fine for me so you must have some other problem in your code.

Mine is used in my drag & Drop Menu Manager and it will save a / to the database varchar field.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#3

maybe i should give an update :|
Reply




Theme © iAndrew 2016 - Forum software by © MyBB