i have here a code that will display the records inside my database. I want to enhance its appearance by adding borders around each record. How should i do it? Helps will be appreciated. \[code\]<?phpmysql_connect("localhost","root","");mysql_select_db("bfp6");$result=mysql_query("Select*From station");$display="<table><tr><th>ID nbsp; </th><th>Station </th><th>Email </th><th>Password </th><td></tr>";while($row=mysql_fetch_array($result)){$id=$row['id'];$stations=$row['stations'];$email=$row['email'];$password=$row['password'];$z="<tr><td>".$id."</td><td>".$stations."</td><td>".$email."</td><td>".$password."</td><tr>";$display=$display.$z;}$display=$display."</table>";echo $display;?>\[/code\]