“PHP Tableaux” Kode Jawaban

tabel php

<?php
$rows = 10; // define number of rows
$cols = 4;// define number of columns

echo "<table border='1'>";

for($tr=1;$tr<=$rows;$tr++){

    echo "<tr>";
        for($td=1;$td<=$cols;$td++){
               echo "<td>row: ".$tr." column: ".$td."</td>";
        }
    echo "</tr>";
}

echo "</table>";
?>
Nervous Nightingale

PHP Tableaux

<?php
$recipes[] = 'Cassoulet'; // Créera $recipes[0]
$recipes[] = 'Couscous'; // Créera $recipes[1]
$recipes[] = 'Escalope Milanaise'; // Créera $recipes[2]
?>
Elias Rayan

Jawaban yang mirip dengan “PHP Tableaux”

Pertanyaan yang mirip dengan “PHP Tableaux”

Lebih banyak jawaban terkait untuk “PHP Tableaux” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya