Free Hosting

วันอาทิตย์ที่ 5 เมษายน พ.ศ. 2558

การแสดงหลาย column โดยใช้ php

<?
 $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">&nbsp;</td> <!-- Create gap between columns -->
                </tr>
           </table>
        </td>
<?
   }
   else{
    echo "<td>&nbsp;</td>"; //If there are no more records at the end, add a blank column
   }
  }
 } while($row);
 echo "</table>";
 ?>

0 ความคิดเห็น:

แสดงความคิดเห็น


พื้นที่โฆษณา

Free Hosting

พื้นที่โฆษณา

Free Hosting
 

Copyright © สอนเขียนโปรแกรม html php css Java SQL jQuery XML Ajax Design by ScriptMasterWebDesign | Theme by ScriptMasterWebDesign | Powered by HosTing