Hi,
I have this code below which lets me validate folder names.
How can I make sure folder name contains no spaces. As you can see in my strpbrk I have symbols that are not allow.
Thanks
I have this code below which lets me validate folder names.
PHP Code:
$is_correct_foldername = strpbrk($this->input->post('folder'), "\\/?%*:@#${}|\"<>");
How can I make sure folder name contains no spaces. As you can see in my strpbrk I have symbols that are not allow.
Thanks