Jump to content

symplox

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

symplox's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. :P Boy, I swear I looked at that, I feel ,  :P
  2. 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
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.