теги идут?
?>
<table>
<tr> <?=$myText?> </tr>
</table>
2) или сначала в строку формируешь? а потом выводишь
$table = "<table>";
$table .= "<tr>".$myText."</tr>";
$table .= "</table>";
echo $table;
Вот так <body> <!-- Header --> <section id="header"> <header> <h2></h2> </header> <!-- TABLE CODE START --> <table id="demo" border="1" class="dataframe"> <thead> <tr style="text-align: right;"> <th>EAN</th> <th>Name</th> <th>Article code (code)</th> <th>Total in stock, Tovacom </th> <th>Total in stock, Erply</th> <th>Result</th> </tr> </thead> <tbody> </tr> <?php foreach ($chunkedArray as $value): ?> <tr> <?php foreach ($value as $item): ?> <td><?= $item ?></td> <?php endforeach; ?> </tr> <?php endforeach; ?> </tbody> </table> <!-- TABLE CODE END --> </section> </body> </head>
Обсуждают сегодня