$line[title]\n
";
print "$line[posttext]\n
";
print "Posted on: $line[date]";
print "
\n\n";
}
// Printing page links
$query = "SELECT COUNT(title) FROM blog";
$result = mysql_query($query);
$rows = mysql_fetch_row($result);
$total_posts = $rows[0];
$total_posts = ceil($total_posts / $posts_per_page);
for ($i=1; $i<=$total_posts; $i++)
{
print "".$i." ";
}
// Close MySQL link
require "includes/dbclose.php";
end_html();
?>