rascle Posted January 16, 2009 Share Posted January 16, 2009 Hi I was wondering if anyone could tell me what is wrong with this code (you can view the results at www.rasclerhys.com/forum) since the code <?php include "banner.php"; session_start(); include "config.php"; include "connect.php"; print "<link rel='stylesheet' href='flashthemestyle.css' type='text/css'>"; echo"<h1>Forum</h1><br />"; echo '<div align="right"><a href="http://www.rasclerhys.com">Return Home </a></div>'; if($logged){ print "<font color=\"#FFFFFF\">You are logged in as $logged[username]</font>"; }else{ echo '<font color="#FFFFFF"> You are not logged in.</font>'; } $result = mysql_query("SELECT * FROM forum"); $row = mysql_fetch_array($result); ?> <?php print "<table class='maintable'>"; print "<font size=\"5\"><tr class='headline'><td>Topic</td><td>Number Of Threads</td><td>Posts</td></tr></font>"; print "<font size=\"4\"><td><a href=\"http://www.rasclerhys.com/generalboard.php\">General Board </a></td>"; ?> <?php include "footer.php"; ?> since i want to have the table saying General Board at the top instead of at the bottom. Thanks Link to comment https://forums.phpfreaks.com/topic/141128-spacing-error/ Share on other sites More sharing options...
Maq Posted January 16, 2009 Share Posted January 16, 2009 You may want to give the correct link first. It's http://www.rasclerhys.com/forum.php NOT (this would be a folder, which is probably what you should do) http://www.rasclerhys.com/forum Link to comment https://forums.phpfreaks.com/topic/141128-spacing-error/#findComment-738656 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.