But all three request variables (Get, Post, and Cookie) are available for each load.
If you want to determine the "type" of request, you will need to know what particular variable you are looking for. If it's username, then:
isset($_POST['username'])
But then someone could modify the cookie and get string and you would have nothing.
What exactly are you looking for?