Anyone ever run into this? I've got one php script that builds my content pages. Each article has several pages. For the first page, everything is ok. When I try to click on the link that I've generated it registers the following: Fatal error: input in flex scanner failed in /usr/local/lib/php on line 1
In essence, I would like to loop through the same article_builder.php page to build each page. In order to pass the url for the next page, I use the ? operator and http_get_vars to recieve.
Is it not legal to continually loop through the same script to build consecutive pages using http_get_vars to pass the variable? Should I use a session instead?