I have a website which uses a PHP index.php page with a switch script inside which uses include(); to display HTML pages.
The gallery is located at www.scooporlando.com/?location=pics
As you can see, when an album is clicked on, it brings you back to main. This is because inside the PHP switch script, you cannot use php get's inside that page because of the libraries hierarchy.
The gallery works when you type in the addresses manually as shown here:
The problem is, this address cannot be generated by plogger from within the switch script. I cannot add the " <?php the_gallery(); ?> " within "include ('place it here'); " because it's not a file, its a function from another running script or PHP file.
The gallery works ON my index.php page when " <?php the_gallery(); ?> " is placed OUTSIDE of the switch script.
The only solution I can think of, is to add my PHP get "?location=page" before the main link within the plogger script so it has the library hierarchy correct, but I can't seem to find it anywhere.