![]() |
remove white space - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: remove white space (/showthread.php?tid=43098) |
remove white space - El Forum - 06-30-2011 [eluser]Bigil Michael[/eluser] i want to remove the white space between words i used validation like this Code: array('field' => 'username','label' => 'Username', 'rules' => 'trim|required|xss_clean'), it accepts username like this bigil michael i want to remove the white space between bigil & michael i searched,but no result can anyone help me???? thanks in advance........... remove white space - El Forum - 06-30-2011 [eluser]Bigil Michael[/eluser] solved my pproblem like this $username = $this->db->escape_str($this->input->post('username')); $username = str_replace(" ",'',$username); $data = array( 'username' => $username, ); |