Get values after php?

Hi,

I want to get two values after php?

example:

…php?page=1&id=2

did I use the right operator (&) and does & affect $_get[] in anyway? thanks

Yes, this is correct operator to use in URI. Within your script you can access these variables using $_GET[‘page’] and $_GET[‘id’]

Sponsor our Newsletter | Privacy Policy | Terms of Service