Update src/index.php

This commit is contained in:
2024-02-21 17:43:25 +08:00
parent 6073b4d15e
commit 02862bfa4f

View File

@@ -2,4 +2,11 @@
<?php <?php
echo '<h1>Hello World</h1><BR>'; echo '<h1>Hello World</h1><BR>';
echo 'Version: 20240221-1537<BR>'; echo 'Version: 20240221-1537<BR>';
// Creating a variable to store the
// server address
$ip_server = $_SERVER['SERVER_ADDR'];
// Printing the stored address
echo "Server IP Address is: $ip_server";
?> ?>