如何在变量中存储php页面名称?

I have a php page (running locally):

http://localhost/webpagefolder/home.php

When a different page is clickedon the URL changes to reflect it. So it now becomes:

http://localhost/webpagefolder/home.php?here=delivery

because I have selected the delivery page.

How would I store the part after the = in a variable?

Something like $name = delivery (or whatever is displayed after the =)

Thanks in advance

In PHP all the GET-variables are stored in the $_GET super global. In your example $_GET['here'] should contain 'delivery'.