Hi there.
I recently asked about variables in the url, such as article.php?id=2 for example. I can get this to work to what I want.
The problem is, if I call one variable, move onto that variable and then call a new variable within that. It prints out what I want for the second variable, as well as what I want for the first.
For example.
I have a file called article.php, and within it I have a switch for the variable game. The link goes to article.php?game=1. So it prints what I have in switch for case=1, which is good and what I want. Now, heres the problem. On the article.php?game=1 code section, I have another link to article.php?game=1&id=1. If I have another switch for the variable id, it prints what I want for that, as well as what was there for the variable game=1.
Can anyone help me?