I have this code which currently displays the information like this:\[code\] <?php mysql_connect("localhost","example","password") or die("Could not connect to localhost");mysql_select_db("exampledb") or die( "Could not connect to database");$result = mysql_query("SELECT * FROM tablexample");echo "<b>" . "Name" . "</b>" . " " . "<b>" . "Number" . "</b>";echo "<br/>";echo "<br/>";while ($row = mysql_fetch_array($result)) {echo ucwords($row['name']) . " " . ucwords($row['number']) . "<br>"; echo "<hr width='20%'>"; }?>Name NumberB (888) 888-3545C (098) 545-4354Cl (888) 888-3545Da (888) 888-3545H (888) 888-3545H (888) 888-3545Khzdf (888) 888-3545\[/code\]BUT I want them to align like this (it should override how many letters each name has and have the same space:\[code\]Name NumberB (888) 888-3545C (098) 545-4354Cl (888) 888-3545Da (888) 888-3545H (888) 888-3545H (888) 888-3545Khzdf (888) 888-3545\[/code\]-- Would this be done in CSS or PHP?