<? $query="select * from members"; $result=mysql_query($query); $cols=3; // Here we define the number of columns echo "<table>"; // The container table with $cols columns do{ echo "<tr>"; for($i=1;$i<=$cols;$i++){ // All the rows will have $cols columns even if // the records are less than $cols $row=mysql_fetch_array($result); if($row){ $img = $row['image_path']; ?> <td> <table> <tr valign="top"> <td><img src="images/<?=$img ?>" /></td> <!-- columns can have both text and images --> <td> <b><?=$row['name'] ?></b><br /> <?=$row['email'] ?><br /> <?=$row['password'] ?><br /> </td> <td width="50"> </td> <!-- Create gap between columns --> </tr> </table> </td> <? } else{ echo "<td> </td>"; //If there are no more records at the end, add a blank column } } } while($row); echo "</table>"; ?>
Browse » Home
วันอาทิตย์ที่ 5 เมษายน พ.ศ. 2558
การแสดงหลาย column โดยใช้ php
สมัครสมาชิก:
ส่งความคิดเห็น (Atom)
0 ความคิดเห็น:
แสดงความคิดเห็น