Hi there,
is there any function or command, that will give me a feedback, if my script was called by https???
Thanks,
Axel
standard ssl port is 443. try this:
if ($_SERVER['SERVER_PORT'] == 443) { //its https } else { //its not }