Jump to content

Spacing Error


rascle

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.