Hi all. Quick question about $_SERVER['SERVER_PROTOCOL']
If I'm calling a page via https, the value of $_SERVER['SERVER_PROTOCOL'] is still given as HTTP/1.1
Is this correct, or is there something not right on the server?
Basically I'm wondering if there is a way through the $_SERVER variables that I can ensure the script is being called via SSL, or if I'll have to do a stristr for https in the url to find out.
Thanks in advance,
P.