Hello, I have a number with 16 digits and a table row with 16 cells. I want each digit to appear in a different cell. Can anyone tell me if there is a way to do this using PHP? Thanks
<?php $number = "1234567891234567"; echo "<table><tr>"; foreach (str_split(strval($number)) as $value) { echo "<td>".$value."</td>"; } echo "</tr></table>"; ?> PHP: