I want to print these letters in a HTML-form vertically, now it's in horizontal form.
<html>
<head>
<meta charset="utf-8" >
<title></title>
</head>
<body>
<?php
$sentence = "What is your first name";
$letters = str_replace(" ", "", $sentence);
$letters_array = str_split($letters);
?>
<table cellpadding="3" cellspacing="0" border="1">
<?php
for($n = 0; $n < strlen($letters); $n++){
print "<td> " . $letters_array[$n] . " </td>";
if(($n+1) % 5 == 0){
print "<tr> ";
}
}
?>
</table>