I\'m just trying to figure that out...
$mystring = \"/abc/def/hij\"; $find = \"/abc\"; echo(strpos($mystring, $find) . \"\"); if (strpos($mystrin
I found what the problem was... I need to use !== false instead of != ... Aaaah, php.