For your body css you should add "top:0px;" so that there isn't a space at the top of the page and your frame.
Also, I added horizontal lines to your BG so it would look less plain.
Wii has awesome games. Super Paper Mario, Super Mario Galaxy, SSBB, Virtual Console, Metriod Prime 3 Corruption, and Okama.
I have a Wii and I would never trade it in for a PS3 or a 360.
You should use sessions as well as cookies.
<?
session_start();
$ip = $_SERVER['REMOTE_ADDR'];
$_SESSION[$ip] = 1;
setcookie('test', $ip);#, time()+86400
function checkOnlineStatus($uip){
if (isset($_SESSION[$uip]){
return $_SESSION[$uip];
} else {
return 'not logged it';
}
}...