如何制作一个表来组织PHP中的按钮

时间:2015-09-07 02:02:39

标签: php html tabular

我有这个代码,它从目录中的文件创建按钮。我需要在一个包含4列的表中组织它们。我怎么能这样做?

这是我的代码:

$handle = opendir('mydirectory');

if($handle){
    while(($entry = readdir($handle)) !== false){
        if($entry != '.' && $entry != '..' && $entry != '.htaccess'){

       echo "<button onclick=\"location.href='mydirectory/$entry'\"    style=\"background-color: #660000;\"><p style=color:white;>$entry</button><br>";

        }
    }
    closedir($handle);

1 个答案:

答案 0 :(得分:1)

考虑一下@Raptor在评论中提到的内容,你可以这样做:

<style>
#buttons{
  width: 300px;
  float:left;
}
</style>
<div id="buttons">
<?php
for($i=0;$i <=10; $i++){
  echo "<button>Button $i</button>";
}
?>
</div>

enter image description here