Okay... tried that... it won't work. That's basically how I was doing it from the start. With the exception that I had the $_GET part added to it.
Now it won't show at all. Nothing. The page loads, but the feed isn't there.
What's also wrong with the code you gave in your reply is the fact that the feed doesn't have the "$feeds" anywhere in there. The reason for that string is that $feeds can be p1, p2, p3, p4, or anything, any combination of the aforementioned.
If your example were to work, ALL of my feeds would end up being displayed.
But... it's not working.
What may help is knowing that this is being put into a php file that is being called into my template.
Example...
$feeds, $towns, $whatever is defined in a file unique to each page.
That file gets called into a "content" file where the designated $feeds, $towns, $whatever is replaced and it is this content file that I want the newsfeeder to load the feeds. All this is called $content (There is some HTML within this file, but it is a php file.)
That combination of files gets called into the "template" file where all the other standard HTML is built and the $content is inserted into the page.
The reason for this is because I want 1 standard looking page for my whole site. Much easier to change the looks on one page.
However, some pages will have newsfeeds, some won't. Some will have different advertising, and other features such as traffic, weather, etc. The pages that don't have this stuff will be fairly plain and generic. The only difference between these pages and the other pages is the lack of this "content". So I have a "content" file with all this stuff that gets inserted into a standard "template" file.
Recap... about 30 pages will be standard "template" with generic content.
About 300+ pages will be the "template" page with all kinds of area specific content.
So if one were to call a file from a URL (say a generic page like index.php) it would go like this...
Index.php would call for the index content file with all the variables. It would then call the template file and the result would be displayed.
However... if you were to call a file with the content (special-page.php) it would go something like this...
special-page.php would call for the special-page file with the variables. These variables would be loaded into a content file. The template file is called and the result of the content is then placed into the template and then displayed.