I am new to PHP so bare with me!
I kniw how to do the ?page=downloads thingy. But how do you make it so it can have two of them.
eg ?page=downloads&?file=stuff.zip
TNX
drop the second ?
so it's ?page=downloads&file=stuff.zip
sarah 🙂
You can send multiple (GET) variables via the URL. Simply separate them with an ampersand (&). There is an upper limit to the number of GET variables that can be propagated through the URL. Does anyone know what that limit is?