Q:

PHP program to print the server name or website name

belongs to collection: PHP Miscellaneous

0

Here, we will use $_SERVER['SERVER_ NAME'] superglobal to get the server or website name 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 name or website name is given below. The given program is compiled and executed successfully.

<?php
//PHP program to print the 
//server name or website name.

$ServerName = $_SERVER['SERVER_NAME'];

printf("Server Name: %s<br>", $ServerName);
?>

Output:

Server Name: www.includehelp.com

Explanation:

In the above program, we used $_SERVER['SERVER_NAME'] super global that returns the server or website name, which is assigned to the variable $ServerName. After that, we printed the server or website name 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 version of the server sof... >>
<< PHP program to print the IP address of a hosted we...