This may or may not be your entire problem but you may want to fix this line:
PHP Code:
$j strpos($crap"[ code] "); 
to
PHP Code:
$j strpos($crap"[ code ] "); 
-Matt