PHP-de bir sikliň kömegi bilen HTML tablisasyny emele getirmek
Bir sikliň kömegi bilen, td teglerine
içki massiw elementlerini el bilen ýazyp,
tablisany emele getirýäris:
<?php
echo '<table>';
foreach ($arr as $user) {
echo '<tr>';
echo "<td>{$user['name']}</td>";
echo "<td>{$user['age']}</td>";
echo "<td>{$user['salary']}</td>";
echo '</tr>';
}
echo '</table>';
?>
Bu usul bize öýjükleriň tertibi hem-de her bir öýjüge goşmaça maglumatlar goşmak mümkinçiligi üsti bilen has giňişleýin dolandyryş berer, mysal üçin, şeýle:
<?php
echo '<table>';
foreach ($arr as $user) {
echo '<tr>';
echo "<td>{$user['name']}</td>";
echo "<td>{$user['age']} years</td>";
echo "<td>{$user['salary']} dollars</td>";
echo '</tr>';
}
echo '</table>';
?>