why is the following php code not working:
$string = \"123\"; $search = \"123\"; if(strpos($string,$search)) { echo \"found\"; }else{ echo \"not fou
Well documented issue explained here. strpos is simply returning '0'