Home »
PHP »
PHP programs
PHP program to print the server name or website name
Here, we are going to learn how to print the server name or website name in PHP?
Submitted by Nidhi, on November 24, 2020 [Last updated : March 14, 2023]
Getting Server/Website Name
Here, we will use $_SERVER['SERVER_ NAME'] superglobal to get the server or website name and then print that on the webpage.
PHP code to print the server's name or website name
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.
More PHP Programs »