pcw Posted February 19, 2009 Share Posted February 19, 2009 Hi, I need some help with this code. The following is just an example of what I have so far, as the script is in excess of 1000 lines. foreach ($part(split('/%%/', $templateflat)) { if ($part == "search results"){ print "Search Form"; } } With this code I get the error: Parse error: parse error, unexpected '{' in sb.php on line 233 if i remove '{' I get the error: Parse error: parse error, unexpected T_IF in sb.php on line 235 Can anybody tell me what I have done wrong? Quote Link to comment https://forums.phpfreaks.com/topic/145979-foreach-error/ Share on other sites More sharing options...
Philip Posted February 19, 2009 Share Posted February 19, 2009 Try: foreach ($part(split('/%%/', $templateflat))) { if ($part == "search results"){ print "Search Form"; } } You were missing a ) Quote Link to comment https://forums.phpfreaks.com/topic/145979-foreach-error/#findComment-766375 Share on other sites More sharing options...
pcw Posted February 19, 2009 Author Share Posted February 19, 2009 Hi, thanks for your reply. I gave this a go and now get the error: Parse error: parse error, unexpected ')' in sb.php on line 233 I really cant figure out what is wrong :-( Quote Link to comment https://forums.phpfreaks.com/topic/145979-foreach-error/#findComment-766408 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.