简体   繁体   中英

Looping rows in html table with php

I want to write the rows as many as the number stated in $row . (instead of one row only). How can I achieve this? What am I doing wrong? thanks.

<?php
   $row = 50;  
   echo "<table border='1'>";
   for($i=0;$i<$row;$i++)
     echo "<tr>";
        echo "<td>L1</td><td>L2</td><td>L3</td>";
      echo "</tr>";
  echo "</table>";
  echo $i+1;
    }
?>

You are closing table inside the loop. Change to the following

    <?php
       $row = 50;  
       echo "<table border='1'>";
       for($i=0;$i<$row;$i++){
         echo "<tr>";
         echo "<td>L1</td><td>L2</td><td>L3</td>";
          echo "</tr>";
       }
       echo "</table>";
    ?>

try this

<?php
       $row = 50;  
       echo "<table border='1'>";
       for($i=0;$i<$row;$i++)
       {
         echo "<tr>";
         echo "<td>L1</td><td>L2</td><td>L3</td>";
          echo "</tr>";
       }
       echo "</table>";
    ?>

try this code i have added some mistake done by you

<?php
$row = 50;  
echo "<table border='1'>";
for($i=0;$i<$row;$i++){ //add bracket here
    echo "<tr>";
    echo "<td>L1</td><td>L2</td><td>L3</td>";
    echo "</tr>";
    //echo $i+1; //remove this one
}
echo "</table>"; //close table tag outside the loop
?>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM