symplox Posted July 18, 2006 Share Posted July 18, 2006 I finally got my LAMP sever configure the way I want and began writing my first php script, supposed to, in the long run, supposed to generate the list of all possible permutations of an anygram and send them thru pspell looking for real words.Well, the following code gets a parse error[tt]Parse error: syntax error, unexpected T_CONTINUE in /usr/local/apache/htdocs/unjumble.php on line 17[/tt][code]<?php$holder = "";$indx = 0;$arry = NULL;class x{ function __construct($jmbl,$str,$index,$array) { $this->str = $str; $this->index = $index; for($c = 0; $c < strlen($jmbl); $c++) { if(!isset($array)) $array[$this->index] = $c; else if(in_array($c, $array) continue; else array[$this->index] = $c; $this->str = $this->str . $jmbl{$c}; if(strlen($this->str) == strlen($jmbl)) print $this->str . "<br />"; else (new x($jmbl,$this->str,++($this->index),$array)); } }new x($__REQUEST['jumble'],$holder,$indx,$arry);?>[/code]There is some simple syntactic error but I am too much a php newbie to spot it, please help Quote Link to comment https://forums.phpfreaks.com/topic/14924-newbie-parse-error/ Share on other sites More sharing options...
Orio Posted July 18, 2006 Share Posted July 18, 2006 Line 17 is:if(in_array($c, $array)Should be:if(in_array($c, $array)[color=red])[/color]One to close the in_array(), one to close the if.Orio. Quote Link to comment https://forums.phpfreaks.com/topic/14924-newbie-parse-error/#findComment-59837 Share on other sites More sharing options...
symplox Posted July 18, 2006 Author Share Posted July 18, 2006 :P Boy, I swear I looked at that, I feel , :P Quote Link to comment https://forums.phpfreaks.com/topic/14924-newbie-parse-error/#findComment-59838 Share on other sites More sharing options...
symplox Posted July 18, 2006 Author Share Posted July 18, 2006 Thank you! Quote Link to comment https://forums.phpfreaks.com/topic/14924-newbie-parse-error/#findComment-59839 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.