having problems with dynamic php pages
« on: March 31, 2006, 02:24:13 PM »
I've got two sites that use php to bring pages together dynamically. The links are like this:

[ External links are visible to forum administrators only ] location=actualindex

On one site [ External links are visible to forum administrators only ] the generator works fine.
On the other it is only picking up the front page? [ External links are visible to forum administrators only ]

Any ideas?

Rich
Re: having problems with dynamic php pages
« Reply #1 on: March 31, 2006, 08:28:17 PM »
Hello Rich,

you have an extra space after "?" character in URLs, like "index.php? location=buy", which is not allowed. You should modify URL to "index.php?location=buy" etc.
Re: having problems with dynamic php pages
« Reply #2 on: April 01, 2006, 08:25:45 AM »
Ok, strange it works on one and not the other though.
Thanks for the reply,
Rich