Welcome Guest, Not a member yet? Register   Sign In
remove white space
#1

[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...........
#2

[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,

);




Theme © iAndrew 2016 - Forum software by © MyBB