If you can see this, it means that your weebox account is fully operational.
You may now login to your account here and start create your website.
Don\'t forget to setup a home page to get rid of this message

'); } else { $query= "SELECT COUNT(*) FROM Page WHERE Page.ID= '".$p."';"; $result = mysql_query($query); $nb= mysql_result($result,0,0); if ($nb==0) { mysql_close($link); header('HTTP/1.0 404 Page Not Found'); exit('

This Page doesn\'t exist !

'); } else { $query= "SELECT * FROM Page WHERE Page.ID= '".$p."';"; $result = mysql_query($query); $f= mysql_result($result,0,"file"); if (is_file($f)) { mysql_close($link); include_once($f); } else { mysql_close($link); header('HTTP/1.0 404 Page Not Found'); exit('

This Page doesn\'t exist !

'); } } } ?>