I am puzzled as to why a "1" is being displayed at the top of the pages that begin with the following code:
<?
session_start ( );
session_register ("username");
$domain = GetHostByName($REMOTE_ADDR);
echo require ("../headers/header_members.php");
?>
The code that follows this preceding code is all html.
My guess is that PHP is returning a value of true for the $domain variable and therefore displaying the "1", but I don't know how to suppress this varibale from being displayed.
Cheers to all,
revez2002