the ?stuff is just a variable so if you say
file.php?stuff=hi
the value of variable stuff is the string hi
now you have you variable, now the script
if ($_GET['stuff'] == "hi"){ // if the value of stuff is hi
print "article hi";
}else{
print "another article";
}
That's it