Display PHP output real nice?

The King

New member
Hey, so this is my code snippet in PHP where I'm printing out the results I grab form my database:

while($row = mysql_fetch_array($result))
{
echo $row['Title'] . "-->" . $row['PostDetails'];
echo "<br />";
}

I wanted to know how to make that display appear in a nice formatted way with a boxed per each output? I've experimented with a few google searches with no luck. Any help would be greatly appreciated! Thanks!
 
Back
Top