if (strpos($input," ")===false){
Would have thought the "===" should be "==" or am l missing something here.
Cheers and thanks in advance.
The code is correct. http://www.php.net/manual/en/function.strpos.php
Think about what happens if the first character happens to be a blank and you will see why the === is required.
Thanks dude, that might explain what the block of code is trying to do 🙂