Q:

PHP program to print the server protocol

belongs to collection: PHP Miscellaneous

0

Here, we will use $_SERVER['SERVER_PROTOCOL'] superglobal to get the server protocol and then print that on the webpage.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to print the server protocol is given below. The given program is compiled and executed successfully.

<?php
//PHP program to print the server protocol.

$ServerProtocol = $_SERVER['SERVER_PROTOCOL'];

printf("Server Protocol: %s<br>", $ServerProtocol);
?>

Output:

Server Protocol: HTTP/1.1

Explanation:

In the above program, we used $_SERVER['SERVER_PROTOCOL'] super global that returns the server protocol, which is assigned to the variable $ServerProtocol. After that, we printed the server protocol on the webpage.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

PHP Miscellaneous

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
PHP program to print the request method used to ac... >>
<< PHP program to print the version of the server sof...