Hello,
(skip down to the bottom of the post if you dont want to know the scenario of the coding, thats the summary question)
I am in the process of coding a dynamic roster of members for my site, but i've come across a small problem. Its actually pretty trival; but I couldnt figure it out.
I have a roster page that is generated by a template, index.php, so I call on that page with index.php?page=roster, which works great and saves time for making new pages. The trouble is that I also have links in that roster which display diffrent sections of the roster (a group of people). Right now my scripting looks for a variable in the URL (like in the index.php) and then displays the called section of coding. Say, index.php?page=roster?listing=feds
The problem is that the second variable in the URL dosnt work. I know a ? in between the first variable and the second dosnt work. I also tried the &, but that didnt work either. Now I know you can have multiple called variables... i've seen them in use.
So the question is, in summary, how do I get the second variable in the URL to work?