The most obvious way would be to use different files, "1.html" and "2.html" 😃
Well, basically, you're saying that given a particular PHP script, you want to be able to pass information to it, so that it can dynamically act of this info, right?
One way to do this would be to use the query string.
Take for example, an "index.php" file.
index.php?display=hello
The query string begins with the '?', and in this case consists of the name/value pair display=hello
Now, index.php could have the code:
if (isset($_GET['display']))
echo $_GET['display'];
So it would print "hello".