Vložení kódu:
for ($i = 0; $i < strlen($text); $i++) {
$bet = $text[$i];
if (in_array($bet, $alphabets)) {
$number = array_search($bet, $alphabets);
for ($x = 0; $x < count($alphabets); $x++) {
if ($x == $number) {
$output .= "*";
} else {
$output .= ".";
}
}
$output .= "\n";
}
}
Vložení čáry:
Vložení tabulky:
| A | B | C | D | E |
| 10 | 10 | 10 | 10 | 10 |
| 20 | 20 | 20 | 20 | 20 |
| 30 | 30 | 30 | 30 | 30 |
| 40 | 40 | 40 | 40 | 40 |