http://www.hcrindienetwork.com/free/member_profile.php?id=1
If you check out the link above in Internet explorer you will notice a weird small space between the header and body. i do not know what is causing this. could you check for me please? here is the code!
<?php
session_start(); // Must start session first thing
/*
This is the top stuff that nobody can see!
*/
// See if they are a logged in member by checking Session data
$toplinks = "";
if (isset($_SESSION['id'])) {
// Put stored session variables into local php variable
$userid = $_SESSION['id'];
$username = $_SESSION['username'];
$toplinks = '<a href="member_profile.php?id=' . $userid . '">' . $username . '</a> •
<a href="member_account.php">Account</a> •
<a href="logout.php">Log Out</a>';
} else {
$toplinks = '<a href="join_form.php">Register</a> • <a href="../index.php">Login</a>';
}
?>
<?php
// Use the URL 'id' variable to set who we want to query info about
$id = ereg_replace("[^0-9]", "", $_GET['id']); // filter everything but numbers for security
if ($id == "") {
echo "Missing Data to Run";
exit();
}
//Connect to the database through our include
include_once "connect_to_mysql.php";
// Query member data from the database and ready it for display
$sql = mysql_query("SELECT * FROM members WHERE id='$id' LIMIT 1");
$count = mysql_num_rows($sql);
if ($count > 1) {
echo "There is no user with that id here.";
exit();
}
while($row = mysql_fetch_array($sql)){
$country = $row["country"];
$state = $row["state"];
$city = $row["city"];
$genre = $row["genre"];
$influences = $row["influences"];
$aboutus = $row["aboutus"];
$members = $row["members"];
$recordlabel = $row["recordlabel"];
$bookingcontact = $row["bookingcontact"];
$username = $row["username"];
// Convert the sign up date to be more readable by humans
$signupdate = strftime("%b %d, %Y", strtotime($row['signupdate']));
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo "$username"; ?>'s Profile</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../default.css">
<style>
#bodydiv
{
height: 950px;
}
</style>
</head>
<body>
<div id="container">
<div id="content">
<img src="http://harborcityrecords.com/hcrindienetwork/free/profilegraphics/profileheader.jpg" alt="Profile Header"/>
<div style="position: absolute; top: 100px; right: 300px; text-align: center;"><?php echo $toplinks; ?></div>
<div id="navbar">
<?php include('menu/menu.php'); ?>
</div>
<div id="bodydiv">
<table style="width: 870px; text-align: left; margin-left: auto; margin-right: auto;" border="0" cellpadding="5" cellspacing="0">
<tbody>
<tr>
</tr><tr>
<td style="width: 250px;">
<div align="left"><img src="memberFiles/<?php echo "$id"; ?>/pic1.jpg" alt="" width="250" /><br><br>
<b>Genre:</b><br><?php echo "$genre"; ?><br><br>
<b>Members:</b><br><?php echo "$members"; ?><br><br>
<b>Record Label:</b><br><?php echo "$recordlabel"; ?><br><br>
<b>Country:</b><br><?php echo "$country"; ?> <br><br>
<b>State/Province:</b><br><?php echo "$state"; ?><br><br>
<b>City:</b><br><?php echo "$city"; ?><br><br>
<b>Booking Contact:</b><br><?php echo "$bookingcontact"; ?><br><br>
</div></td>
<td style="text-align: center; vertical-align: top;">
<script type="text/javascript"><!--
google_ad_client = "pub-0568620827775779";
/* profile add */
google_ad_slot = "3203075073";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<center><big><big><big><span style="color: rgb(78, 254, 112);"><?php echo "$username"; ?></span></big></big></big><br><br>
<b>About Us:</b><br><div style="text-align: left;"><?php echo "$aboutus"; ?><br><br>
<center><b>Influences:</b><center><?php echo "$influences"; ?><br><br>
</center></center>
</td></tr>
</tbody>
</table>
</div>
<div id="footer">
</div>
<div id="underfooter">
<p class="footer">© 2011 HCR Network is a subsidary of Harbor City Records LLC. All Rights Reserved.</p>
</div>
</div>
</div>
</body>
</html>