Need help in printing records from database

57 Views Asked by At

I want to print records from db like this.

http://www.imagesup.net/dm-613781138202.png

I have tried for loop and foreach both.

The sample code is:

<?php
$str = '1,2,3,4,5,6,7,8,9,10,11,12,13,14';
$str2 = (explode(",",$str));
echo '<table border="1">';
foreach ($str2 as $str3)
{
echo '<tr>';
for($i=0;$i<5;$i++)
{
echo '
<td>'.$str3.'</td>
';
}
echo '</tr>';
}
echo '</table>';
?> 

I have tried many others but not getting required result.

2

There are 2 best solutions below

8
On

Try something like this

<?php

$str = '1,2,3,4,5,6,7,8,9,10,11,12,13,14';
echo '<table>';
$list = explode(",", $str);
$itemsPerRow = 7;

for ($i = 0; $i < sizeof($list); $i+=$itemsPerRow)
{
   echo '<tr>';
   for($j = 0; $j < $itemsPerRow; $j++)
   {
      $val = isset($list[$i + $j]) ? $list[$i + $j] : '';
      echo '<td>' . $val . '</td>';
   }
   echo '</tr>'
}
echo '</table>'
?>

The above uses two for loops to iterate over the data. The outer loop controls the row, and the inner loop controls the content.

1
On

@kami you should replace + with . like this.

<?php

 $str = '1,2,3,4,5,6,7,8,9,10,11,12,13,14';
 echo '<table>';
 $list = explode(",", $str);
 $itemsPerRow = 7;

for ($i = 0; $i < sizeof($list); $i+=$itemsPerRow)
{
   echo '<tr>';
   for($j = 0; $j < $itemsPerRow; $j++)
     {
    $val = isset($list[$i + $j]) ? $list[$i + $j] : '';
  echo '<td>' .$val. '</td>';
   }
   echo '</tr>';
}
  echo '</table>';
 ?>