Numbering pages

Hi

I wanna be able to have a page number just like what Kirupa has. For instance if you are in page one, then that number is highlited or something like that.

So far I came up with this, but don’t know how to do that.


$show_page="";
	for ($i=1; $i<=$num_page;$i++){
		$start_page=(($i*$limit)-$limit);
		$dynamicLink = "view_blogs.php?start=" . $start_page . "&limit=" . ($limit+0);
		$show_page .= "<a href=\" " .$dynamicLink. "  \">" . $i . "</a>" . "&nbsp; | &nbsp;";
		
	};

Any help would be great.

Thanks

Ivan