Yes, basically...when you call a url such as list.php?num=1, then a variable $num is created with a value of 1. You can then use this variable for whatever you want. Often it's used to refer to a row in a database, for example. You issue a query and get the row where some id is equal to $num. Then display the data from that row. The same script, or php file, can be used for every row in the database, just by passing another num to it.
Hope that helps...
---John Holmes...