Home
About
Articles
Contact
My Blog and My Life
$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); print "
Page: "; for ($i=1; $i<=$total_posts; $i++) { print "
".$i."
"; } print "
"; // Close MySQL link require "includes/dbclose.php"; ?>