It's using GET to store a variable called p with a value of 277.
In PHP you can read that variable by running
echo $_GET['p'];
?>
On this page that would say 277.
In this case, it's used to mean this is post number 277. The code will check this is a number, then look up the post with id 277 in the database.