diff options
author | 2022-05-11 18:03:21 +0200 | |
---|---|---|
committer | 2022-05-11 18:03:21 +0200 | |
commit | e7fa7dd60e4422ec2cfb954ba51944d293522b48 (patch) | |
tree | f25ec39a298748f1590b07d1d9ac231db606cfc6 /ip.rhtml.php | |
parent | 6bb1bf2629d8c628e640b9cfcd60967d7aa4d5ec (diff) | |
download | website-e7fa7dd60e4422ec2cfb954ba51944d293522b48.tar.gz website-e7fa7dd60e4422ec2cfb954ba51944d293522b48.zip |
Add title to `ip` page
Diffstat (limited to 'ip.rhtml.php')
-rw-r--r-- | ip.rhtml.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ip.rhtml.php b/ip.rhtml.php index 5b0a3e0..94b63fb 100644 --- a/ip.rhtml.php +++ b/ip.rhtml.php @@ -1,3 +1,5 @@ +<h1>Il tuo IP</h1> +<p> <?php // Function to get the client IP address function get_client_ip() { @@ -19,4 +21,6 @@ function get_client_ip() { return $ipaddress; } -echo get_client_ip();
\ No newline at end of file +echo get_client_ip(); +?> +</p>
\ No newline at end of file |