Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
help on PHP
I just started a PHP book and it gives me this as an example but when i try it out it just says the same thing instead of my IP and other stuff
<!DOCTYPE html PUBLIC "-//W3C//DTDXHTML
1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/
xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xml : lang="en" lang="en">
<head>
<meta http-equiv="content-type" content=
"text/html; charset=iso-8859-1" />
<title>predefined variables</title>
</head>
<body>
<?PHP # Script 1.6 - predifined PHP.php
// Create a shorthand version of the variable names. $file=$_SERVER['PHP_SELF']; $user=$_SERVER['HTTP_USR_AGENT']; $address=$_SERVER['REMOTE_ADDR'];
//print the name of this script.
echo "<p>You are running the file <b>$file
</b>.</p>/n";
// Print the user's information.
echo "<p>You are viewing this page using:<br /><b><br />
from the IP address:<br /.<b>$address<br /></p>/n;
?> </body> </html>