Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <style> table, td, th { bordure: 1px solide #ddd; text-align: gauche; } table { border-collapse: collapse; largeur: 100%; } th, td { padding: 10px; } </style> <body> <?php $cars = array ( array("Volvo",22,18), array("BMW",15,13), array("Saab",5,2), array("Land Rover",17,15) ); echo "<table>"; echo "<tr><th>Marque</th><th>Stock</th><th>Vendu</th></tr>"; foreach ($cars as $row) { echo "<tr>"; foreach ($row as $cell) { echo "<td>" . $cell . "</td>"; } echo "</tr>"; } echo "</table>"; ?> </body> </html>
Marque
Stock
Vendu
Volvo
22
18
BMW
15
13
Saab
5
2
Land Rover
17
15